export declare const BREAKPOINTS: { SMALL_MAX_WIDTH: number; MEDIUM_MAX_WIDTH: number; LARGE_MAX_WIDTH: number; XL_MAX_WIDTH: number; }; export declare const LABELS: { SMALL: string; MEDIUM: string; LARGE: string; XL: string; }; /** * @typedef {Object} Breakpoints * @property {boolean} isSmall - Whether the small breakpoint is reached * @property {boolean} isMedium - Whether the medium breakpoint is reached * @property {boolean} isLarge - Whether the large breakpoint is reached * @property {boolean} isXL - Whether the large breakpoint is reached */ /** * A hook which returns an enum value indicating the current matched * breakpoint. This module exports the enum values for the three variants * (SMALL, MEDIUM, LARGE, and X_LARGE), so consumers of this hook can reference the * matched value accordingly. * * * @return {Breakpoints} An object of boolean properties, e.g. `isSmall` */ export default function useBreakpoints(): { isSmall: boolean; isMedium: boolean; isLarge: boolean; isXL: boolean; }; //# sourceMappingURL=useBreakpoints.d.ts.map