type ThemeUserFeedback = { textSuccess: string; textError: string; }; /** @deprecated Use `themeUserFeedback` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const userFeedbackThemeDefault: { userFeedback: { textSuccess: "#22874D"; textError: "#C70000"; }; }; /** @deprecated Use `themeUserFeedbackBrand` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const userFeedbackThemeBrand: { userFeedback: { textSuccess: "#58D08B"; textError: "#FF9081"; }; }; declare const themeUserFeedback: { readonly textSuccess: "#22874D"; readonly textError: "#C70000"; }; declare const themeUserFeedbackBrand: { readonly textSuccess: "#58D08B"; readonly textError: "#FF9081"; }; export { themeUserFeedback, themeUserFeedbackBrand, userFeedbackThemeBrand, userFeedbackThemeDefault }; export type { ThemeUserFeedback };