import { IconNamesType } from '../../../../../../../../../src/utils/icons'; type SizeType = "sm" | "md" | "lg"; export interface IconProps extends React.BaseHTMLAttributes { "aria-label": string; className?: string; icon: IconNamesType; notification?: boolean; size?: SizeType; status?: "available" | "away" | "busy" | "do-not-disturb" | "offline" | "lock" | "warning" | "missed" | "connected" | "inbound" | "outbound"; } /** * The `Icon` component is used to display an icon. * * @example * * */ export declare const Icon: React.FC; export {};