import type { WebProofRequest, WebProofResponse } from './types';
export declare function callNativeWebProof(request: WebProofRequest): Promise<WebProofResponse>;
export declare function callNativeSimpleWebProof(notaryHost: string, notaryPort: number, url: string): Promise<string>;
export declare function isNativeBindingLoaded(): boolean;
export declare function getNativeBindingInfo(): {
    loaded: boolean;
    attempts: number;
    error: string | null;
    supportedPlatforms: string[];
};
