import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
export declare const SegmentSubtitleFrame: core.serialization.ObjectSchema<serializers.SegmentSubtitleFrame.Raw, ElevenLabs.SegmentSubtitleFrame>;
export declare namespace SegmentSubtitleFrame {
    interface Raw {
        start_time: number;
        end_time: number;
        lines: string[];
    }
}
