declare const COLOR: readonly ['inverted', 'primary']; export type LogoColor = (typeof COLOR)[number] | 'currentColor'; export type WordmarkProps = { className?: string; role?: React.ImgHTMLAttributes['role']; /** * Alternate text. * * @default Volvo */ alt?: string; /** * Set the height of the wordmark (use multiples of 8). The width will be set to 13 times the height. * * @default 8 */ height?: number; }; /** * Wordmark renders an `img` with a src on the volvocars.com CDN, automatically picking up the primary foreground color for the current color mode * and zooming with the browser font size. */ export declare const Wordmark: import("react").ForwardRefExoticComponent>; export {};