import FileInputStreamType from './FileInputStreamType';
import InputStream from './InputStream';
import InputStreamType from './InputStreamType';
/**
 * @export
 * @class FileInputStream
 */
export declare class FileInputStream extends InputStream {
    /**
     * Discriminator property for InputStream
     * @type {string}
     * @memberof FileInputStream
     */
    readonly type: InputStreamType;
    /**
     * Id of input (required)
     * @type {string}
     * @memberof FileInputStream
     */
    inputId?: string;
    /**
     * Path to file (required)
     * @type {string}
     * @memberof FileInputStream
     */
    inputPath?: string;
    /**
     * @type {FileInputStreamType}
     * @memberof FileInputStream
     */
    fileType?: FileInputStreamType;
    constructor(obj?: Partial<FileInputStream>);
}
export default FileInputStream;
