import * as IconMap from './map'; import { IIconProps } from './runtime'; export declare type IconType = keyof typeof IconMap; export interface IIconAllProps extends IIconProps { type?: IconType | string; } export declare const allGetContent: (svgItem: string, props: IIconProps) => string; export declare const iconKeg: (props: IIconAllProps) => string;