import type * as core from "../../../../../core";
/**
 * @example
 *     {
 *         file: fs.createReadStream("/path/to/your/file")
 *     }
 */
export interface BodyUploadMusicV1MusicUploadPost {
    /** The audio file to upload. */
    file: core.file.Uploadable;
    /** Whether to generate and return the composition plan for the uploaded song. If True, the response will include the composition_plan but will increase the latency. */
    extractCompositionPlan?: boolean;
}
