import { ThemedCssFunction } from './styled'; import { ScreenSize, Breakpoints } from '../common'; export declare type WidthBreakpoints = { min?: number; max?: number; }; export declare function getMediaQueries(breakpoints: Breakpoints): {}; export declare function displayUpTo(screen: ScreenSize): ThemedCssFunction; export declare function displayFrom(screen: ScreenSize): ThemedCssFunction; export declare function displayTo(screen: ScreenSize | string): ThemedCssFunction; export declare function getWidthBreakpointsQuery({ max, min }: WidthBreakpoints): string; export declare function getScreenSizeBreakpoints(screen: ScreenSize, breakpoints: Breakpoints): WidthBreakpoints | undefined;