import { breakpoints } from './breakpoints'; import { BreakpointFunction, Breakpoints, UseMediaFunction } from './media-query.types'; declare const max: BreakpointFunction; declare const min: BreakpointFunction; export declare const mediaIsMatch: (breakpoint: string) => boolean; export declare const deviceWidth: { isMobilePlusAndSmaller: boolean; isTabletPortraitAndSmaller: boolean; }; declare const mediaWatcher: (mediaQuery: string, layoutChangedCallback: (mediaQueryMatches: boolean) => void) => void; declare const getCurrentBreakpoint: () => undefined; declare const useMedia: (callback: UseMediaFunction) => void; export { breakpoints, min, max, useMedia, mediaWatcher, getCurrentBreakpoint, Breakpoints };