import { Component, ComponentProps, ParentProps } from "solid-js"; import { IconComponent } from "../types"; export interface FooterIconProps extends ParentProps> { ariaLabel?: string; href?: string; icon: IconComponent; } export declare const FooterIcon: Component;