import type { UnistylesBreakpoints } from './global'; import type { Nullable } from './types'; type MQValue = keyof UnistylesBreakpoints | number; type MQHandler = { only: { width(wMin?: Nullable, wMax?: MQValue): symbol; height(hMin?: Nullable, hMax?: MQValue): symbol; }; width(wMin?: Nullable, wMax?: MQValue): { and: { height(hMin?: Nullable, hMax?: MQValue): symbol; }; }; height(hMin?: Nullable, hMax?: MQValue): { and: { width(wMin?: Nullable, wMax?: MQValue): symbol; }; }; }; /** * Utility to create cross-platform media queries * @returns - JavaScript symbol to be used in your stylesheet */ export declare const mq: MQHandler; export {}; //# sourceMappingURL=mq.d.ts.map