import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        value?: string[] | undefined;
        suggestions?: string[] | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type TagsInputProps = typeof __propDef.props;
export type TagsInputEvents = typeof __propDef.events;
export type TagsInputSlots = typeof __propDef.slots;
export default class TagsInput extends SvelteComponent<TagsInputProps, TagsInputEvents, TagsInputSlots> {
    get value(): string[] | undefined;
    /**accessor*/
    set value(_: string[] | undefined);
    get suggestions(): string[] | undefined;
    /**accessor*/
    set suggestions(_: string[] | undefined);
}
export {};
