import type { ComponentProps, FC, PropsWithChildren } from 'react'; export interface FooterBrandProps extends PropsWithChildren> { alt?: string; href?: string; name?: string; src: string; } export declare const FooterBrand: FC;