export declare const xSmallBreakpoint = 480; export declare const smallBreakpoint = 720; export declare const mediumBreakpoint = 1024; export declare const largeBreakpoint = 1366; /** * Only execute given css in mobile mode (browser width < 480px) */ export declare function mobile(css: string): string; /** * Only execute given css in tablet mode (browser width < 1024px and > 480px) */ export declare function tablet(css: string): string; /** * Only execute given css in desktop mode (browser width >= 1024px) */ export declare function desktop(css: string): string;