/**
 * Generates a media queries given a set of named breakpoints
 * @param {Object} breakpoints Object of key-value pairs where the key is the name of
 * the breakpoint size and the value is the min-width of that breakpoint
 * @returns {Object} A set of CSS media queries for each breakpoint size
 */
export declare const makeMq: (breakpoints: {
    [key: string]: number;
}) => {
    [key: string]: string;
};
//# sourceMappingURL=makeMq.d.ts.map