import { Breakpoint } from '../styles/theme/createBreakpoints'; /** * Current applied breakpoint, based on window's width. * * Note: it might return `null` on first render, if `window` object * is not defined (on server side rendering, for example). */ export declare function useBreakpoint(): Breakpoint | null;