/**
 * Get Archived URL tool - Retrieves archived versions of URLs
 */
import { z } from 'zod';
export declare const GetArchivedUrlSchema: z.ZodObject<{
    url: z.ZodString;
    timestamp: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    url: string;
    timestamp?: string | undefined;
}, {
    url: string;
    timestamp?: string | undefined;
}>;
export type GetArchivedUrlInput = z.infer<typeof GetArchivedUrlSchema>;
/**
 * Get an archived version of a URL
 */
export declare function getArchivedUrl(input: GetArchivedUrlInput): Promise<{
    success: boolean;
    message: string;
    archivedUrl?: string;
    timestamp?: string;
    available?: boolean;
}>;
//# sourceMappingURL=retrieve.d.ts.map