import { NotVault } from './notvault'; export declare const saltToBigInt: (str: string) => BigInt[]; export declare const genProof: (vault: NotVault, name: string, input: any) => Promise<{ proof: string; solidityProof: string; inputs: string[]; }>; export declare const verifyProof: (vault: NotVault, name: string, proof: any) => Promise;