import * as React from "react"; export interface LogoProps extends React.ImgHTMLAttributes { /** * Source URL or path to the logo image */ src: string; /** * Alt text for accessibility */ alt: string; /** * Width of the logo in pixels * @default undefined (natural width) */ width?: number; /** * Height of the logo in pixels * @default undefined (natural height) */ height?: number; /** * Additional CSS classes */ className?: string; } /** * Logo component for displaying product/brand logos * * @example * ```tsx * import { Logo } from '@itech-india/itech-fluentui/components'; * import myLogo from './assets/logo.svg'; * * * ``` */ export declare const Logo: React.ForwardRefExoticComponent>; //# sourceMappingURL=logo.d.ts.map