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