import { css } from 'styled-components'; type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; type BreakpointType = 'min' | 'max'; type MediaQuery = (args: ReturnType) => ReturnType; export declare const mq: Record>; export {};