/** * * Check Archive Status tool — Checks archival statistics for URLs. */ import * as z from "zod"; import type { ToolContext } from "./context.ts"; export declare const CheckArchiveStatus: z.ZodObject<{ url: z.ZodURL; }, z.core.$strip>; export type CheckArchiveStatus = z.output; interface StatusResult { success: boolean; message: string; isArchived: boolean; firstCapture?: string; lastCapture?: string; totalCaptures?: number; yearlyCaptures?: Record; } /** * * Check if a URL has been archived and get capture statistics. */ export declare function checkArchiveStatus(input: CheckArchiveStatus, ctx: ToolContext): Promise; export {}; //# sourceMappingURL=status.d.ts.map