import type { TRoot } from '../root/createRoot.svelte.js'; export interface CreateTriggerConfig { root: TRoot; } export type TTrigger = ReturnType; export declare function createTrigger(config: CreateTriggerConfig): { props: { 'data-st-combobox-trigger-button': string; 'data-st-trigger-button': string; readonly "aria-controls": string; readonly "aria-expanded": boolean; readonly "aria-label": string; onclick(): void; tabindex: number; type: "button"; }; };