import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactNode } from 'react'; import { Breakpoint } from './Breakpoints.js'; declare const DefaultUnsupportedMatchMediaBreakpoint: Breakpoint; interface BreakpointProviderProps { /** The children of the component */ children: ReactNode; /** * The breakpoint to use when the browser does not support matchMedia. * @default "lg" */ unsupportedMatchMediaBreakpoint?: Breakpoint; } declare function BreakpointProvider({ children, unsupportedMatchMediaBreakpoint }: BreakpointProviderProps): react_jsx_runtime.JSX.Element; export { BreakpointProvider, type BreakpointProviderProps, DefaultUnsupportedMatchMediaBreakpoint };