import React, { AriaRole } from "react"; import { SubIcon, VibeComponent, VibeComponentProps } from "../../../types"; export interface FontIconProps extends VibeComponentProps { onClick?: (event: React.MouseEvent) => void; "aria-label"?: string; tabIndex?: number; icon?: SubIcon; role?: AriaRole; "aria-hidden"?: boolean; } declare const FontIcon: VibeComponent; export default FontIcon;