import type { DefineComponent } from 'vue'; export interface LogoProps { /** 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 const Logo: DefineComponent; export default Logo;