/// import React from 'react'; import BasePropsType from './PropsType'; export interface WingBlankProps extends BasePropsType { prefixCls?: string; className?: string; } export default class WingBlank extends React.Component { static defaultProps: { prefixCls: string; size: string; }; render(): JSX.Element; }