import { FC } from 'react'; export interface IIconActionProps { name: string; size?: number; iconColor?: string; iconHoverColor?: string; iconBgColor?: string; iconBgHoverColor?: string; right?: boolean; left?: boolean; onClick?: () => void; isDisabled?: boolean; isActive?: boolean; noPadding?: boolean; tooltip?: string; } export declare const Icon: FC;