import type { ComponentProps, FC, PropsWithChildren } from 'react'; export interface FooterIconProps extends PropsWithChildren> { ariaLabel?: string; href?: string; icon: FC>; } export declare const FooterIcon: FC;