export declare const firstBreakpointName: 'mobile' export declare const breakpointNames: readonly ['mobile', 'mobileXl', 'tablet', 'desktop'] export declare type FirstBreakpointName = typeof firstBreakpointName export declare type BreakpointNames = typeof breakpointNames[number] export declare type RestBreakpointNames = Exclude export declare type Breakpoints = Record export declare const breakpoints: Breakpoints export declare const isFirstBreakpoint: (b: BreakpointNames) => b is 'mobile' export declare const breakpointsDictMap: (f: (b: BreakpointNames, i: number) => A) => { mobile: A mobileXl: A tablet: A desktop: A } export declare const breakpointsDictInit: (a: A) => { mobile: A mobileXl: A tablet: A desktop: A } export declare const isBreakpointBelowOrEqual: (a: BreakpointNames, t: BreakpointNames) => boolean