export interface LogoOptions { /** Catalog slug, e.g. "bca". */ slug?: string; /** Pre-imported SVG string. Takes precedence over `slug`. */ svg?: string; /** Size in px (number) or any CSS length. */ size?: number | string; /** Accessible label. */ title?: string; /** CSS class on the wrapper span. */ className?: string; } export declare function createLogo(options?: LogoOptions): HTMLSpanElement | null; export declare function renderLogo( target: string | Element, options?: LogoOptions ): HTMLSpanElement | null; export declare function getLogoSvg(slug: string): string | null; declare const _default: { createLogo: typeof createLogo; renderLogo: typeof renderLogo; getLogoSvg: typeof getLogoSvg; }; export default _default;