import { type ComponentProps } from "react"; import type { ThemingProps } from "../../types"; export interface FooterBrandTheme { base: string; img: string; span: string; } type GenericLinkImageProps = ComponentProps<"a"> & ComponentProps<"img">; export interface FooterBrandProps extends GenericLinkImageProps, ThemingProps { name?: string; src: string; } export declare const FooterBrand: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export {};