import React from 'react'; import { IconSize, IconType } from '../Icon/Icon'; declare type IconButtonProps = { icon: IconType; size?: IconSize; color?: string; fillColor?: boolean; }; export declare const Icon: React.ForwardRefExoticComponent & IconButtonProps & React.RefAttributes>; export {};