import { User } from "./user.data.model";
export declare class Transcription {
    /**
     * User who created the transcription
     */
    from: User;
    /**
     * Timestamp of when the transcription was created
     */
    lastUpdated?: number;
    /**
     * Bucket path of the srt file
     */
    srtBucketPath?: string;
    /**
     * Srt file url
     */
    srtUrl?: string;
    /**
     * Transcripted text
     */
    transcriptedText?: string;
    /**
     * Time taken in ms to transcribe the recording
     */
    transcriptionLatency?: number;
    /**
     * Bucket path of the vtt file
     */
    vttBucketPath?: string;
    /**
     * Vtt file url
     */
    vttUrl?: string;
}
