import React, { ReactNode } from 'react'; declare type FeChipVariant = 'contained' | 'outlined'; declare type FeChipSize = 'sm' | 'm'; declare type FeChipColor = 'primary' | 'warn' | 'error' | 'primary-light' | 'warn-light' | 'error-light'; declare type ChipTransform = 'initial' | 'capitalize' | 'lowercase' | 'uppercase'; export interface BChipProps { className?: string; children: ReactNode; variant?: FeChipVariant; size?: FeChipSize; color?: FeChipColor; transform?: ChipTransform; clickable?: boolean; onClick?: () => void; } export declare const BChip: React.NamedExoticComponent; export {};