import { PartContentType, XboxMessage } from '../..'; import { GatewayVoiceContentPart } from '../../ws'; import { BasePart } from './BasePart'; export declare class VoicePart extends BasePart { type: PartContentType.Voice; id: string; duration: number; constructor(client: XboxMessage, data: GatewayVoiceContentPart); transcribe(): Promise; }