import { FC } from 'react';
import { ClassNameFormatter } from '@bem-react/classname';
export declare type IconProps = {
    className?: string;
};
export declare type BaseIconProps = IconProps & {
    cn: ClassNameFormatter;
};
/**
 * Компонент-хелпер для сборки иконок для шапки через background-image.
 * @param {BaseIconProps} props
 *
 */
export declare const BaseIcon: FC<BaseIconProps>;
