import * as React from 'react'; export declare type IStatus = 'primary' | 'default' | 'success' | 'warning' | 'error'; export declare type ISize = 'small' | 'large'; export declare type IType = 'number' | 'string'; interface IBadgesProps { status?: IStatus; size?: ISize; type?: IType; className?: string; } export declare class Badges extends React.Component { constructor(props: any); static defaultProps: { size: string; type: string; classNames: string; }; render(): JSX.Element; } export {};