import { FunctionComponent, HTMLProps } from 'react'; export interface BrandProps extends HTMLProps { src?: string; alt: string; } declare const Brand: FunctionComponent; export default Brand;