/** * Responsive Utilities * -------------------- * Bridges BreakpointManager with utilities/recipes by generating * media-query maps and container conditions in a consistent way. */ export type Comparison = 'min' | 'max' | 'between'; export interface BetweenRange { from: string; to: string; } export type QueryLabel = string | BetweenRange; export declare function queryFor(label: QueryLabel, comparison?: Comparison): string; export declare function conditionFor(label: QueryLabel, comparison?: Comparison): string; export declare function mapByBreakpoints(map: Record, comparison?: Exclude): Record; export declare function mapBetween(ranges: Array<{ from: string; to: string; value: T; }>): Record; //# sourceMappingURL=responsive.d.ts.map