import { Storage } from './types'; export declare class Delete { private readonly storage; /** * Creates an instance of Delete, which will handle cleanly deleting data in the storage. * * @param storage The implementation of Storage. */ constructor(storage: Storage); /** * Deletes a stage. * * @param stageId ID of the stage. */ stage(stageId: number): Promise; } //# sourceMappingURL=delete.d.ts.map