/**
 * @export
 * @class InputPath
 */
export declare class InputPath {
    /**
     * Id of input (required)
     * @type {string}
     * @memberof InputPath
     */
    inputId?: string;
    /**
     * Path to media file (required)
     * @type {string}
     * @memberof InputPath
     */
    inputPath?: string;
    constructor(obj?: Partial<InputPath>);
}
export default InputPath;
