/** @deprecated Use Partial instead */ type ButtonTheme = { textPrimary: string; backgroundPrimary: string; backgroundPrimaryHover?: string; textSecondary?: string; backgroundSecondary?: string; backgroundSecondaryHover?: string; textTertiary?: string; backgroundTertiaryHover?: string; borderTertiary?: string; textSubdued?: string; }; type ThemeButton = { textPrimary: string; backgroundPrimary: string; backgroundPrimaryHover?: string; textSecondary: string; backgroundSecondary: string; backgroundSecondaryHover?: string; textTertiary: string; backgroundTertiary: string; backgroundTertiaryHover?: string; borderTertiary: string; textSubdued: string; }; /** @deprecated Use `themeButton` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const buttonThemeDefault: { button: ButtonTheme; }; /** @deprecated Use `themeButtonBrand` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const buttonThemeBrand: { button: ButtonTheme; }; /** @deprecated Use `themeButtonBrandAlt` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const buttonThemeBrandAlt: { button: ButtonTheme; }; declare const themeButton: ThemeButton; declare const themeButtonBrand: ThemeButton; declare const themeButtonBrandAlt: ThemeButton; export { buttonThemeBrand, buttonThemeBrandAlt, buttonThemeDefault, themeButton, themeButtonBrand, themeButtonBrandAlt }; export type { ButtonTheme, ThemeButton };