/**
 * @export
 * @class InsertableContentInput
 */
export declare class InsertableContentInput {
    /**
     * Id of the input hosting the video file (required)
     * @type {string}
     * @memberof InsertableContentInput
     */
    inputId?: string;
    /**
     * Path to the file on the input (required)
     * @type {string}
     * @memberof InsertableContentInput
     */
    inputPath?: string;
    /**
     * Description of this input
     * @type {string}
     * @memberof InsertableContentInput
     */
    description?: string;
    constructor(obj?: Partial<InsertableContentInput>);
}
export default InsertableContentInput;
