type ThemeLabel = { textLabel: string; textOptional: string; textSupporting: string; textError: string; textSuccess: string; }; /** @deprecated Use `themeLabel` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const labelThemeDefault: { label: { textLabel: "#121212"; textOptional: "#707070"; textSupporting: "#707070"; textError: "#C70000"; textSuccess: "#22874D"; }; }; /** @deprecated Use `themeLabelBrand` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const labelThemeBrand: { label: { textLabel: "#FFFFFF"; textOptional: "#C1D8FC"; textSupporting: "#C1D8FC"; textError: "#FF9081"; textSuccess: "#58D08B"; }; }; declare const themeLabel: { readonly textLabel: "#121212"; readonly textOptional: "#707070"; readonly textSupporting: "#707070"; readonly textError: "#C70000"; readonly textSuccess: "#22874D"; }; declare const themeLabelBrand: { readonly textLabel: "#FFFFFF"; readonly textOptional: "#C1D8FC"; readonly textSupporting: "#C1D8FC"; readonly textError: "#FF9081"; readonly textSuccess: "#58D08B"; }; export { labelThemeBrand, labelThemeDefault, themeLabel, themeLabelBrand }; export type { ThemeLabel };