import { TLayer } from '../../../types/TLayer';
import { TUiColorsMain } from '../../../types/TUiColorsMain';
import { TUiColorsSystemMessage } from '../../../types/TUiColorsSystemMessage';
export type TFancyChipList = {
    themeType?: TUiColorsMain;
    systemInformation?: TUiColorsSystemMessage;
    layer?: TLayer;
    outlined?: boolean;
    chips?: TChip[];
    inputPlaceholder?: string;
    legend?: string;
    sizeC?: 'sm' | 'md' | 'lg';
    editable?: boolean;
    disabled?: boolean;
    onChange?: (chips: TChip[]) => void;
};
export type TChip = {
    id: string;
    label: string;
};
