import _m0 from 'protobufjs/minimal'; import { AudioSegmentBoundaries } from '../../../../../yandex/cloud/speechsense/v1/analysis/statistics_common'; export declare const protobufPackage = "yandex.cloud.speechsense.v1.analysis"; export interface InterruptsStatistics { /** Interrupts description for every speaker */ speakerInterrupts: InterruptsEvaluation[]; } export interface InterruptsEvaluation { /** Speaker tag */ speakerTag: string; /** Number of interrupts made by the speaker */ interruptsCount: number; /** Total duration of all interrupts */ interruptsDurationMs: number; /** Boundaries for every interrupt */ interrupts: AudioSegmentBoundaries[]; /** Total duration of all interrupts in seconds */ interruptsDurationSeconds: number; } export declare const InterruptsStatistics: { encode(message: InterruptsStatistics, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): InterruptsStatistics; fromJSON(object: any): InterruptsStatistics; toJSON(message: InterruptsStatistics): unknown; fromPartial, never>)[] & Record, never>) | undefined; interruptsDurationSeconds?: number | undefined; } & Record, never>)[] & Record, never>) | undefined; } & Record, never>>(object: I): InterruptsStatistics; }; export declare const InterruptsEvaluation: { encode(message: InterruptsEvaluation, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): InterruptsEvaluation; fromJSON(object: any): InterruptsEvaluation; toJSON(message: InterruptsEvaluation): unknown; fromPartial, never>)[] & Record, never>) | undefined; interruptsDurationSeconds?: number | undefined; } & Record, never>>(object: I): InterruptsEvaluation; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};