/** * The action enum when speech recognition return a final phrase result */ export declare enum NextAction { None = "None", Translate = "Translate" } /** * The on success configuration */ export interface OnSuccess { /** * The action to take on success */ action?: NextAction; }