export declare const breakpoints: readonly ["zero", "micro", "small", "medium", "wide", "large", "ultra"]; export type Breakpoint = (typeof breakpoints)[number]; /** * Checks whether the document matches a particular media query. * It will rely on the global CSS variables to determine the value of the breakpoints. * * @param from The breakpoint corresponding to the `min-width` value of the media query (optional). * @param to The breakpoint corresponding to the `max-width` value of the media query (optional). * @returns A boolean indicating whether the window matches the breakpoint. */ export declare function isBreakpoint(from?: Breakpoint, to?: Breakpoint, properties?: { includeMaxBreakpoint: boolean; }): boolean; //# sourceMappingURL=breakpoint.d.ts.map