import { SvelteComponentTyped } from "svelte"; import type { ISelectBase } from '../../interfaces/ISelectBase'; declare const __propDef: { props: { [x: string]: any; separator?: string | undefined; value?: ISelectBase[] | undefined; data?: string | undefined; placeholder?: string | undefined; isUnique?: boolean | undefined; minLength?: number | undefined; maxLength?: number | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: { item: ISelectBase; onDelete: (item: ISelectBase, index: number) => () => void; index: any; }; }; }; export declare type ChipsProps = typeof __propDef.props; export declare type ChipsEvents = typeof __propDef.events; export declare type ChipsSlots = typeof __propDef.slots; export default class Chips extends SvelteComponentTyped { } export {};