import { ProofParams } from './params.js'; import '@mailchain/encoding'; import '@mailchain/addressing'; declare function simpleV1enUS(encodedAddress: string, encodedMessagingPublicKey: string, nonce: number): string; declare function mailchainUsername(encodedAddress: string, encodedMessagingPublicKey: string, nonce: number): string; type ParseTemplate = (encodedAddress: string, encodedPublicKey: string, nonce: number) => string; declare function getTemplate(params: ProofParams): ParseTemplate; export { ParseTemplate, getTemplate, mailchainUsername, simpleV1enUS };