type Breakpoints = { [key: string]: number; }; export declare function useBreakpoint(breakpoints: Breakpoints): { breakpoint: string; isBreakpoint: (key: string) => boolean; isAbove: (key: string) => boolean; isBelow: (key: string) => boolean; getCurrentBreakpoint: () => string; }; export {};