import { Theme } from "./createTheme"; import { ResponsiveStyleValue } from "./styleFunctionSx"; import { StyledPropsBase } from "./styledProps"; import { SystemProps } from "./systemProps"; export type SxPropsBase = Omit> & StyledPropsBase & SystemProps; export type SxCascade = { [K in keyof Sx]?: ResponsiveStyleValue | ((theme: T) => ResponsiveStyleValue); } | { [K: string]: SxCascade; }; export type SxPropsObject = SxCascade>; export type SxProps = SxPropsObject[] | SxPropsObject; export default SxProps; //# sourceMappingURL=sxProps.d.ts.map