import { StyleFunction, TransformFunction } from "../style/index.js"; type SimpleStyleFunction = StyleFunction>>; export interface SxConfigRecord { cssProperty?: keyof React.CSSProperties | false | undefined; /** * dot access in `Theme` */ themeKey?: string | undefined; transform?: TransformFunction | undefined; style?: SimpleStyleFunction | undefined; } export type SxConfig = Record; declare const defaultSxConfig: SxConfig; export default defaultSxConfig;