import { IStyle } from 'fela'; export declare const XS = 0; export declare const SM = 576; export declare const MD = 768; export declare const LG = 992; export declare const XL = 1200; export declare const XXL = 1600; export declare enum Orientation { LANDSCAPE = "landscape", PORTRAIT = "portrait" } export declare const mediaBreakpointDown: (value: number) => (content: IStyle) => IStyle; export declare const mediaBreakpointBetween: (start: number, end: number) => (content: IStyle) => IStyle; export declare const mediaBreakpointUp: (value: number) => (content: IStyle) => IStyle; /** * Apply css for landscape and max width to breakpoint * @param breakPoint detault to SM */ export declare const mediaLandscapeBreakpointDown: (breakPoint?: number) => (content: IStyle) => IStyle; export declare const mediaLandscape: (content: IStyle) => IStyle; export declare const mediaPortrait: (content: IStyle) => IStyle; export declare function isLandscape(): boolean; export declare function isSmallScreen(threshold?: number): boolean;