import { Run } from "./run"; import * as wasm from "./pkg"; export declare class Delete { run: Run; _author: string | null; _date: string | null; constructor(run: Run); author(author: string): this; date(date: string): this; build(): wasm.Delete; }