export interface VoiceSampleVisualWaveformResponseModel {
    /** The ID of the sample. */
    sampleId: string;
    /** The visual waveform of the sample, represented as a list of floats. */
    visualWaveform: number[];
}
