import type { Ed25519KeyIdentity } from '@icp-sdk/core/identity'; import type { Nonce, Salt } from '../types/nonce'; export declare const generateNonce: ({ caller }: { caller: Ed25519KeyIdentity; }) => Promise<{ nonce: Nonce; salt: Salt; }>;