import { FC } from "react"; export interface IconLabelProps { readonly htmlFor?: string; readonly className?: string; readonly icon: FC; onClick?: () => void; } export declare const IconLabel: FC;