/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { ComponentType, SVGProps } from 'react'; export declare const logoBrands: readonly ["amsterdam", "amsterdam-english", "ggd-amsterdam", "ggd-amsterdam-inspectie", "museum-weesp", "stadsarchief", "stadsbank-van-lening", "vga-verzekeringen"]; export type LogoBrand = (typeof logoBrands)[number]; export type LogoProps = { /** The name of the brand for which to display the logo, or configuration for a custom logo. */ brand?: LogoBrand | LogoBrandConfig; } & SVGProps; export type LogoBrandConfig = { label: string; svg: ComponentType>; }; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-media-logo--docs Logo docs at Amsterdam Design System} */ export declare const Logo: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;