import { CSSObject } from 'styled-components'; import { DefaultTheme } from 'styled-components'; import { RuleSet } from 'styled-components'; declare type AddDollarSign = { [K in keyof T as `$${string & K}`]: T[K]; }; declare type AddDollarSign_2 = { [K in keyof T as `$${string & K}`]: T[K]; }; export declare const addSX: RuleSet>; export declare interface addSXProps { sx?: SXProps; } export declare type addSXStyleProps = AddDollarSign_2; declare type IThemeDevice = 'default' | 'tablet' | 'mobile'; export declare type SXProps = ({ default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }) | ((theme: DefaultTheme) => { default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }); export { }