import { MimcSponge } from 'circomlibjs'; import type { Element, HashFunction } from '@tornado/fixed-merkle-tree'; export declare class Mimc { sponge?: MimcSponge; hash?: HashFunction; mimcPromise: Promise; constructor(); initMimc(): Promise; getHash(): Promise<{ sponge: MimcSponge | undefined; hash: HashFunction | undefined; }>; } export declare const mimc: Mimc;