/// import './style'; interface IconProps { type: string; /** * class */ className?: string; } declare const Icon: (props: IconProps) => JSX.Element; export declare const Sym: (props: IconProps) => JSX.Element; export default Icon;