import { type ComponentProps, type FC } from "react"; import type { ThemingProps } from "../../types"; export interface FooterIconTheme { base: string; size: string; } type GenericLinkSvgProps = ComponentProps<"a"> & ComponentProps<"svg">; export interface FooterIconProps extends GenericLinkSvgProps, ThemingProps { ariaLabel?: string; icon: FC>; } export declare const FooterIcon: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export {};