import * as React from 'react';
import './cdn.scss';
import { Status } from '../common/types';
export interface WiconProps {
    className?: string;
    style?: React.CSSProperties;
    type?: string;
    size?: string;
    status?: Status | string;
    reverse?: boolean;
}
export default class Wicon extends React.Component<WiconProps> {
    static displayName: string;
    static defaultProps: {
        size: string;
        type: string;
        status: string;
    };
    constructor(props: WiconProps);
    render(): React.JSX.Element;
}
