export declare enum MEDIA_TYPES {
    MOBILE = "MOBILE",
    TABLET = "TABLET",
    DESKTOP = "DESKTOP"
}
export declare enum SIZES {
    XS = "xs",
    SM = "sm",
    MD = "md",
    LG = "lg",
    XL = "xl",
    UL = "ul"
}
export type Size = {
    name: SIZES;
    minWidth: string;
    maxWidth: string;
};
export type MediaType = {
    [key in MEDIA_TYPES]?: SIZES[];
};
export declare const SIZES_LIST: Size[];
export declare const MAP_SIZES_TO_MEDIA_TYPES: MediaType;
