import { BaseFunction } from "./__base"; import { TimeDelta } from "../../lib/time"; export declare class AddFunction extends BaseFunction { example: string; helpText: string[]; helpArgs: { name: string; description: string; }[]; protected validate(): void; protected main(v1: number | Date | TimeDelta, v2: number | Date | TimeDelta): number | Date; } //# sourceMappingURL=add.d.ts.map