import type { SchemaOf } from '../helpers'; import { Joi } from '../helpers'; import type { Strategy } from './configureParams'; export interface IWordData { startTime: number; endTime: number; word: string; confidence: number; } export declare const recognitionResultSchemaMap: SchemaOf; export declare const recognitionResultSchema: Joi.ObjectSchema; export interface IRecognitionResult { text: string; confidence: number; isFinal: boolean; words?: IWordData[]; engine: string; timestamp?: number; strategy?: Strategy; }