import { Breakpoint } from '../types/breakpoint'; export declare const mobileBreakpoint: number; /** * Take a breakpoint mapping and return the breakpoint value that most closely matches the actual breakpoint. */ export declare function matchBreakpointMapping(subset: Partial>, actual: Breakpoint): T | null; /** * Get the named breakpoint for a provided width, optionally filtering to a subset of breakpoints. */ export declare function getMatchingBreakpoint(width: number, breakpointFilter?: T, previousBreakpoint?: Breakpoint | null): T[number] | 'default'; export declare function getBreakpointValue(breakpoint: Breakpoint): number; export { Breakpoint } from '../types/breakpoint';