import { Mode as ModeType, Breakpoint as BreakpointType } from '../components/Breakpoint/generateMediaQuery'; type At = { at: string; }; type GreaterThan = { gt: string; }; type LessThan = { lt: string; }; export declare const discriminate: (props: At | GreaterThan | LessThan) => { mode: ModeType; breakpoint: BreakpointType; }; export declare const useBreakpoint: (props: At | GreaterThan | LessThan) => { matches: boolean; }; export {};