import { StyleFunction } from '../Box'; import { TransformFunction } from '../style'; 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;