/** * {@link DDialogSelect} search object. */ export interface DDialogSelectSearch { create(args: [string] | [string, CATEGORY_ID | null]): void; on(event: "success", handler: (e: unknown, searchResults: VALUE[]) => void): void; on(event: "fail", handler: () => void): void; on(event: "change", handler: () => void): void; isDone(): boolean; }