import { AbstractSource } from "./abstract-source"; /** * @export * @class File * @implements {Source} */ export declare class File extends AbstractSource { constructor(paths: { data: string; temp: string; }); /** * @param {string} value * @returns {Promise} * @memberof File */ exists(value: string): Promise; /** * @param {string} value * @returns {Promise} * @memberof File */ update(value: string): Promise; protected preparePackage(value: string): Promise; } //# sourceMappingURL=file.d.ts.map