import React from 'react'; export interface IconProps { type?: string; theme: 'Outlined' | 'TwoTone'; } export declare function Icon(props: IconProps): React.CElement<{}, React.Component<{}, any, any>>; export declare namespace Icon { var defaultProps: { theme: string; }; }