type ThemeTextInput = { textUserInput: string; textLabel: string; textOptional: string; textSupporting: string; textError: string; textSuccess: string; backgroundInput: string; border: string; borderError: string; borderSuccess: string; }; declare const themeTextInput: ThemeTextInput; /** @deprecated Use `themeTextInput` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const textInputThemeDefault: { userFeedback: { textSuccess: "#22874D"; textError: "#C70000"; }; textInput: { textUserInput: "#121212"; textLabel: "#121212"; textLabelOptional: "#707070"; textLabelSupporting: "#707070"; textError: "#121212"; textSuccess: "#22874D"; backgroundInput: "#FFFFFF"; border: "#707070"; borderActive: "#0077B6"; borderError: "#C70000"; borderSuccess: "#22874D"; }; }; export { textInputThemeDefault, themeTextInput }; export type { ThemeTextInput };