export declare type ColorScheme = "light" | "dark" | "contrast-light" | "contrast-dark"; export declare type Viewports = "xs" | "s" | "m" | "l"; export declare type ViewportConfig = { [key in Viewports]?: "show" | "hide"; };