import type { WebProofOptions, WebProofResult, PerformanceMetrics } from './types';
export declare function webProof(url: string, options?: WebProofOptions): Promise<WebProofResult & {
    metrics?: PerformanceMetrics;
}>;
export declare function simpleWebProof(notaryHost: string, notaryPort: number, url: string): Promise<string>;
