type ThemeLink = { textPrimary: string; textPrimaryHover: string; textSecondary: string; textSecondaryHover: string; }; /** @deprecated Use `Partial` and component `theme` prop instead of `LinkTheme` */ type LinkTheme = { textPrimary: string; textPrimaryHover: string; textSecondary?: string; textSecondaryHover?: string; }; /** @deprecated Use `themeLink` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const linkThemeDefault: { link: LinkTheme; }; /** @deprecated Use `themeLinkBrand` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const linkThemeBrand: { link: LinkTheme; }; /** @deprecated Use `themeLinkBrandAlt` and component `theme` prop instead of emotion's `ThemeProvider` */ declare const linkThemeBrandAlt: { link: LinkTheme; }; declare const themeLink: ThemeLink; declare const themeLinkBrand: Partial; declare const themeLinkBrandAlt: Partial; export { linkThemeBrand, linkThemeBrandAlt, linkThemeDefault, themeLink, themeLinkBrand, themeLinkBrandAlt }; export type { LinkTheme, ThemeLink };