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