declare const cleanThreads: () => Promise; declare const genProof: (inputs: string[], zkeyPath: string, rapidsnarkExePath?: string, witnessExePath?: string, wasmPath?: string, silent?: boolean) => Promise; declare const verifyProof: (publicInputs: any, proof: any, vk: any, cleanup?: boolean) => Promise; declare const extractVk: (zkeyPath: string, cleanup?: boolean) => Promise; export { genProof, verifyProof, extractVk, cleanThreads };