import type * as core from "../../../../../core";
/**
 * @example
 *     {}
 */
export interface BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost {
    /** Either txt or HTML input file containing the article content. HTML should be formatted as follows '&lt;html&gt;&lt;body&gt;&lt;div&gt;&lt;p&gt;Your content&lt;/p&gt;&lt;h5&gt;More of your content&lt;/h5&gt;&lt;p&gt;Some more of your content&lt;/p&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;' */
    file?: core.file.Uploadable | undefined;
    /** Whether to auto convert the project to audio or not. */
    autoConvert?: boolean;
    /** Whether to auto publish the new project snapshot after it's converted. */
    autoPublish?: boolean;
}
