import type * as ElevenLabs from "../index";
export interface AudioNativeProjectSettingsResponseModel {
    /** The title of the project. */
    title: string;
    /** The image of the project. */
    image: string;
    /** The author of the project. */
    author: string;
    /** Whether the project is small. */
    small: boolean;
    /** The text color of the project. */
    textColor: string;
    /** The background color of the project. */
    backgroundColor: string;
    /** The sessionization of the project. Specifies for how many minutes to persist the session across page reloads. */
    sessionization: number;
    /** The path of the audio file. */
    audioPath?: string;
    /** The URL of the audio file. */
    audioUrl?: string;
    /** Current state of the project */
    status?: ElevenLabs.AudioNativeProjectSettingsResponseModelStatus;
}
