export declare const VoiceMessageInputStatus: {
    readonly READY_TO_RECORD: "READY_TO_RECORD";
    readonly RECORDING: "RECORDING";
    readonly READY_TO_PLAY: "READY_TO_PLAY";
    readonly PLAYING: "PLAYING";
};
export type VoiceMessageInputStatus = typeof VoiceMessageInputStatus[keyof typeof VoiceMessageInputStatus];
