/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { ForwardRefExoticComponent, RefAttributes, SVGProps } from 'react';
export type LogoBrand = 'amsterdam' | 'ggd-amsterdam' | 'museum-weesp' | 'stadsarchief' | 'stadsbank-van-lening' | 'vga-verzekeringen';
export type LogoProps = {
    /** The name of the brand for which to display the logo. */
    brand?: LogoBrand;
} & SVGProps<SVGSVGElement>;
export declare const Logo: ForwardRefExoticComponent<Omit<LogoProps, "ref"> & RefAttributes<SVGSVGElement>>;
