///
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
import { WingBlankPropsType } from './PropsType';
export interface WingBlankProps extends WingBlankPropsType {
style?: StyleProp;
}
declare class WingBlank extends React.Component {
static defaultProps: {
size: string;
};
render(): JSX.Element;
}
export default WingBlank;