import { FlattenSimpleInterpolation, SimpleInterpolation } from 'styled-components'; import { BreakpointKey } from '../DSProvider/ThemeProvider/breakpoints'; export type Media = { from: BreakpointsType; to: BreakpointsType; only: BreakpointsType; }; type MediaTemplateFunction = (strings: TemplateStringsArray, ...interpolations: SimpleInterpolation[]) => FlattenSimpleInterpolation; type BreakpointsType = Record; export declare const MEDIA_FROM: BreakpointsType; export declare const MEDIA_TO: BreakpointsType; export declare const MEDIA_ONLY: BreakpointsType; declare const mediaQuery: Media; export default mediaQuery;