export type ChipType = 'filter' | 'input' | 'in-component'; export type ChipState = 'default' | 'active'; export type ChipSize = 'sm' | 'md' | 'lg' | 'xl'; export interface ChipProps { children: React.ReactNode; type?: ChipType; state?: ChipState; size?: ChipSize; rounded?: boolean; disabled?: boolean; iconLeft?: React.ReactNode; iconRight?: React.ReactNode; onRemove?: () => void; onClick?: () => void; } export declare const Chip: ({ children, type, state, size, rounded, disabled, iconLeft, iconRight, onRemove, onClick, }: ChipProps) => import("react/jsx-runtime").JSX.Element;