import { type ColorProperty } from './createColor'; export type CreatedTextColorTheme = { main: string; black: string; white: string; 'white-darken': string; disabled: string; link: string; 'link-darken': string; grey: string; danger: string; 'warning-yellow': string; brand: string; green: string; 'color-inherit': 'inherit'; transparent: 'transparent'; }; export declare const defaultTextColor: CreatedTextColorTheme; export declare const createTextColor: (userColor?: ColorProperty) => CreatedTextColorTheme;