import { FC, CSSProperties, MouseEventHandler } from 'react'; import { FcrIconType } from './type'; import { PathOptions } from './svg-dict'; export type FcrIconProps = { type: FcrIconType; size?: number; className?: string; style?: CSSProperties; colors?: Partial; onClick?: MouseEventHandler; fill?: string; }; export declare const FcrIcon: FC;