import { SvelteComponentTyped } from "svelte"; import type { IOptions } from '../../interfaces/IOption'; declare const __propDef: { props: { items: IOptions[]; optionGroupChildren?: string | undefined; optionGroupLabel?: string | undefined; optionLabel?: string | undefined; isGroupItems?: boolean | undefined; value?: string | undefined; }; events: { click: any; } & { [evt: string]: CustomEvent; }; slots: { default: { item: IOptions; isGroupItems: boolean; }; }; }; export declare type ListProps = typeof __propDef.props; export declare type ListEvents = typeof __propDef.events; export declare type ListSlots = typeof __propDef.slots; export default class List extends SvelteComponentTyped { } export {};