import { PureComponent } from 'react'; export declare class BetaBadge extends PureComponent<{ className?: any; /** * One word label like "Beta" or "Lab" */ label?: any; /** * Supply an icon type if the badge should just be an icon */ iconType?: any; /** * Content for the tooltip */ tooltipContent?: any; /** * Custom position of the tooltip */ tooltipPosition?: any; /** * Optional title will be supplied as tooltip title or title attribute otherwise the label will be used */ title?: any; }> { static defaultProps: { tooltipPosition: string; }; static propTypes: {}; render(): JSX.Element | null; }