export declare class SallaBadge {
    /**
     * The size of the badge
     */
    size: 'xs' | 'sm' | 'md';
    /**
     * The text color of the badge
     */
    color: 'black' | 'primary-900';
    /**
     * The background color of the badge
     */
    bg: 'transparent' | 'light' | 'primary-100';
    render(): any;
}
