export declare enum ViewportSizes {
    Desktop = "desktop",
    Tablet = "tablet",
    Mobile = "mobile"
}
export declare enum Layouts {
    Desktop = "desktop",
    Tablet = "tablet",
    Mobile = "mobile"
}
/** { breakpointName: CSS px value string } */
export type Breakpoints = {
    [key: string]: string;
    desktopMin: string;
    tabletMax: string;
    tabletMin: string;
    mobileMax: string;
    mobileMin: string;
};
