export declare class TdsBadge {
    /** Value shown in Badge */
    value: string;
    /** Changes visibility of Badge */
    hidden: boolean;
    /** Sets component size. */
    size: 'lg' | 'sm';
    /** Defines aria-live attribute */
    tdsAriaLive: 'off' | 'polite' | 'assertive';
    tdsAriaLabel: string;
    shape: string;
    text: string;
    watchProps(): void;
    componentWillLoad(): void;
    checkProps(): void;
    render(): any;
}
