declare const breakpointQueries: Readonly<{ sm: MediaQueryList; md: MediaQueryList; lg: MediaQueryList; xl: MediaQueryList; xxl: MediaQueryList; }>; export type BreakpointKey = keyof typeof breakpointQueries; /** * Hook that returns whether the screen has a minimum width of the specified breakpoint. * * This is hook might be too specific, consider using `useLayoutBreakpoint` instead that * is intended for more general use cases. * * @param key - The breakpoint key. */ export declare function useScreenHasMinWidth(key: BreakpointKey): boolean; export {};