import Output from './Output';
import OutputType from './OutputType';
/**
 * @export
 * @class LocalOutput
 */
export declare class LocalOutput extends Output {
    /**
     * Discriminator property for Output
     * @type {string}
     * @memberof LocalOutput
     */
    readonly type: OutputType;
    /**
     * Path to your local storage (required)
     * @type {string}
     * @memberof LocalOutput
     */
    path?: string;
    constructor(obj?: Partial<LocalOutput>);
}
export default LocalOutput;
