import { FlattenInterpolation, ThemeProps, DefaultTheme } from "styled-components"; type TColor = "brand" | "highlight" | "black" | "white" | "default"; type TVariantsType = { [key in TColor]: FlattenInterpolation>; }; export declare const variants: TVariantsType; export {};