import { ComponentProps, FC, PropsWithChildren } from 'react'; import { DeepPartial } from '../../types/types'; import { FooterBrandTheme } from './theme'; export interface FooterBrandProps extends PropsWithChildren { alt?: string; className?: string; href?: string; name?: string; src: string; theme?: DeepPartial; } export declare const FooterBrand: FC & ComponentProps<"img">>; //# sourceMappingURL=FooterBrand.d.ts.map