import type { TRoot } from '../root/createRoot.svelte.js'; export interface CreateListboxConfig { root: TRoot; } export type TListbox = ReturnType; export declare function createListbox(config: CreateListboxConfig): { props: { 'data-st-combobox-listbox': string; readonly "aria-label": string; id: string; role: "listbox"; }; };