import type { Strategy } from '../../voice-to-text/configureParams'; import type { SchemaOf } from '../../helpers'; export interface IConfig { commonPhrases: string[]; minimumConfidenceResultWaitTimeoutMillis: number; speechContinuationWaitTimeoutMillis: number; gspeechFastThreshold: number; snipsFastThreshold: number; gspeechMinimumThreshold: number; snipsMinimumThreshold: number; initialPhraseStrategy: Strategy; defaultStrategy: Strategy; strategyByQuestionId: { [key: string]: Strategy | undefined; }; } export declare const schemaMapDefault: SchemaOf; export declare const schemaMap: import("../../helpers").StrictSchemaMap<{ commonPhrases: unknown; minimumConfidenceResultWaitTimeoutMillis: unknown; speechContinuationWaitTimeoutMillis: unknown; gspeechFastThreshold: unknown; snipsFastThreshold: unknown; gspeechMinimumThreshold: unknown; snipsMinimumThreshold: unknown; initialPhraseStrategy: unknown; defaultStrategy: unknown; strategyByQuestionId: unknown; }>; export declare const mergeConfig: (target?: Partial | undefined, source?: Partial | undefined) => Partial; export declare const defaultConfig: IConfig;