import type { HTMLAttributes, ReactElement } from 'react';
export interface LogoProps extends Omit, 'dangerouslySetInnerHTML'> {
/** Catalog slug, e.g. "bca". Bundles all icons if used; prefer `svg` for tree-shaking. */
slug?: string;
/** Pre-imported SVG string (tree-shake friendly). Takes precedence over `slug`. */
svg?: string;
/** Size in px (number) or any CSS length. Sets both width and height on the wrapper span. */
size?: number | string;
/** Accessible label. Sets role="img" + aria-label. */
title?: string;
}
export declare function Logo(props: LogoProps): ReactElement | null;
export default Logo;