export declare type ChipType = "label" | "rounded"; export declare type FillStyle = "none" | "filled"; export declare const chipType: { label: "label" | "rounded"; rounded: "label" | "rounded"; }; export declare const fillStyle: { none: FillStyle; filled: FillStyle; }; export declare const supportedChipTypes: string[]; export declare const supportedFillStyles: string[]; export interface ChipItem { text: string; value: string; iconImage?: string; iconName?: string; iconText?: string; hasIconImage?: boolean; hasIconName?: boolean; hasIconText?: boolean; isRemovable: boolean; }