import { SvelteComponent } from "svelte"; export interface DropdownRow { id: string; icon: SvgString; title: string; terms: readonly string[]; } export type DropdownRows = readonly [DropdownRow, ...DropdownRow[]]; import type { SvgString } from '@sxxov/ut/types'; declare const __propDef: { props: { width?: any; label?: string; heightInput?: any; heightMaxItems?: any; name: string; items: DropdownRows; selectedItemId?: string; active?: boolean; inputProps?: any; }; events: { submit: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: { item: DropdownRow; i: any; select: () => void; }; }; }; export type DropdownProps = typeof __propDef.props; export type DropdownEvents = typeof __propDef.events; export type DropdownSlots = typeof __propDef.slots; export default class Dropdown extends SvelteComponent { } export {};