import type { ModelInfo, ModelRef } from "../types.js"; import { type CustomUiLike } from "./component.js"; export type { CustomUiLike }; export declare function pickVoiceModels(args: { ui: CustomUiLike; title: string; models: ModelInfo[]; initial: ModelRef[]; }): Promise; export declare function pickConductorModel(args: { ui: CustomUiLike; title: string; models: ModelInfo[]; voices: ModelRef[]; initial?: ModelRef; }): Promise;