export declare enum LogoType { WISE = "WISE", WISE_BUSINESS = "WISE_BUSINESS", WISE_PLATFORM = "WISE_PLATFORM" } export interface LogoProps { /** Extra classes applied to Logo */ className?: string; /** * Renders a light-coloured version suited for dark backgrounds. * @default false */ inverse?: boolean; /** * What type of logo to display * @default 'WISE' */ type?: `${LogoType}`; } /** * Renders the Wise wordmark logo. Responsive — shows the flag-only mark on small viewports * and the full wordmark on ≥576px (small breakpoint and above). * * @see {@link https://wise.design/foundations/logo Design Spec} */ export default function Logo({ className, inverse, type }: LogoProps): import("react").JSX.Element; //# sourceMappingURL=Logo.d.ts.map