import { DarkSwap } from '../darkSwap'; export interface MerklePath { noteCommitment: bigint; path: string[]; index: number[]; root: string; } export declare const EMPTY_PATH: MerklePath; export declare function getMerklePathAndRoot(note: bigint, darkSwap: DarkSwap): Promise; export declare function multiGetMerklePathAndRoot(notes: bigint[], darkSwap: DarkSwap): Promise;