/// import * as icons from '../../icons'; export type IconsNames = keyof typeof icons; interface IIcon { name: IconsNames; fill?: string; stroke?: string; } export declare function Icon({ name, fill, stroke }: IIcon): import("react").JSX.Element; export {};