interface OrchestratorOptions {
    feature: string;
    voice?: boolean;
}
declare const runOrchestrator: (options: OrchestratorOptions) => Promise<any>;

export { runOrchestrator };
