/** * Save URL tool — Archives a URL to the Wayback Machine via SPN2 API. * Supports authentication for higher rate limits and optional capture options. */ import * as z from "zod"; import type { ToolContext } from "./context.ts"; export declare const SaveUrl: z.ZodObject<{ url: z.ZodURL; captureScreenshot: z.ZodOptional; captureOutlinks: z.ZodOptional; ifNotArchivedWithin: z.ZodOptional; jsBehaviorTimeout: z.ZodOptional; forceGet: z.ZodOptional; delayWbAvailability: z.ZodOptional; }, z.core.$strip>; export type SaveUrl = z.output; interface SaveResult { success: boolean; message: string; jobId?: string; archivedUrl?: string; timestamp?: string; } /** * * Save a URL to the Wayback Machine using the SPN2 API. */ export declare function saveUrl(input: SaveUrl, ctx: ToolContext): Promise; export {}; //# sourceMappingURL=save.d.ts.map