import { ResultReason, VoiceProfileResult } from "./Exports.js";
/**
 * Output format
 * @class VoiceProfilePhraseResult
 */
export declare class VoiceProfilePhraseResult extends VoiceProfileResult {
    private privPhrases;
    private privType;
    constructor(reason: ResultReason, statusText: string, type: string, phraseArray: string[]);
    get phrases(): string[];
    get type(): string;
}
