/**
 * Save URL tool - Archives a URL to the Wayback Machine
 */
import { z } from 'zod';
export declare const SaveUrlSchema: z.ZodObject<{
    url: z.ZodString;
}, "strip", z.ZodTypeAny, {
    url: string;
}, {
    url: string;
}>;
export type SaveUrlInput = z.infer<typeof SaveUrlSchema>;
/**
 * Save a URL to the Wayback Machine
 */
export declare function saveUrl(input: SaveUrlInput): Promise<{
    success: boolean;
    message: string;
    jobId?: string;
    archivedUrl?: string;
    timestamp?: string;
}>;
//# sourceMappingURL=save.d.ts.map