import React from 'react';
export interface BadgeProps {
    type?: 'default' | 'informational' | 'success' | 'attention' | 'warning' | 'danger';
    text?: string;
    className?: string;
    removeButton?: boolean;
    onClick?(): void;
}
export declare function PHXBadge({ text, type, className, removeButton, onClick }: BadgeProps): React.JSX.Element;
