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