import { FC, FunctionComponent } from 'react';
export interface IconsTitleProps {
    icon: FunctionComponent;
    size: 'small' | 'big';
}
export declare const Icon: FC<IconsTitleProps>;
