import { NoteOnChainStatus } from '../entities'; import { DarkSwap } from '../darkSwap'; import { DarkSwapNote } from '../types'; import { Fr } from '../aztec/fields/fields'; export declare function getNoteOnChainStatusByPublicKey(darkSwap: DarkSwap, note: DarkSwapNote, publicKey: [Fr, Fr]): Promise; export declare function getNoteOnChainStatusBySignature(darkSwap: DarkSwap, note: DarkSwapNote, signature: string): Promise; export declare function isNoteActive(darkSwap: DarkSwap, note: DarkSwapNote, publicKey: [Fr, Fr]): Promise; export declare function isNoteSpent(darkSwap: DarkSwap, note: DarkSwapNote, publicKey: [Fr, Fr]): Promise; export declare function isNoteValid(darkSwap: DarkSwap, note: DarkSwapNote, publicKey: [Fr, Fr]): Promise; export declare function getNullifierBySignature(note: DarkSwapNote, signature: string): Promise; export declare function isNoteCreated(darkSwap: DarkSwap, note: bigint): Promise;