export type ColorVariant = 'light' | 'dark' | 'white'; export declare const getColorValue: (color: ColorVariant) => string; export declare const getResponsiveColorStyles: (textColor: ColorVariant | ColorVariant[] | undefined) => import("styled-components").FlattenSimpleInterpolation;