import { MutableRefObject } from 'react'; export type Breakpoint = { key: string; }; export declare const getBreakpoint: (breakpoints: T[], nodeRect: ClientRect, accessor: (x: T | ClientRect) => number) => string; declare const useBreakpoint: (checkSize: (rect: ClientRect) => string[]) => [MutableRefObject, string[]]; export default useBreakpoint;