import { SxProps } from '@mui/material'; import { ComponentProps } from 'react'; type IUseSxOptions = { defaults?: boolean; }; declare function useSx(props: ComponentProps<{ sx?: SxProps; } & any>, sx: SxProps, options?: IUseSxOptions): SxProps; export { useSx }; //# sourceMappingURL=mui.d.ts.map