import { CSSProperties } from "react"; import { Breakpoint } from "./types"; export declare const getCurrentBreakpoint: (width: number) => Breakpoint | undefined; export declare const getCurrentBreakpointMaxWidth: (width: number) => number | undefined; export declare const isGreaterThanBreakpoint: (width: number, breakpoint: Breakpoint) => boolean; export declare const isLessThanBreakpoint: (width: number, breakpoint: Breakpoint) => boolean; export declare const makeMediaQuery: (breakpoint: Breakpoint, type: 'min' | 'max', cssProps: CSSProperties) => string; export declare const getActiveBreakpoints: (width: number) => Record;