export declare const QUERIES: {
    readonly ALL: "(min-width: 0)";
    readonly SMALL: "(min-width: 640px)";
    readonly MEDIUM: "(min-width: 768px)";
    readonly LARGE: "(min-width: 1024px)";
    readonly XLARGE: "(min-width: 1220px)";
};
export type Devices = Lowercase<keyof typeof QUERIES>;
