import * as React from 'react';
import './index.scss';
interface ArrowProps {
    type: 'up' | 'down';
}
export default class Wcircle extends React.Component<ArrowProps> {
    static defaultProps: {
        type: string;
    };
    render(): JSX.Element;
}
export {};
