import type * as mod from "./index.js"; import type * as payloads from "./payloads.js"; export declare const transfer: ({ args }: mod.TransferArgs) => payloads.Transfer; /** Basic account creation methods. */ export declare const create_account: ({ args, }: mod.CreateAccountArgs) => payloads.CreateAccount; export declare const rotate_authentication_key: ({ args, }: mod.RotateAuthenticationKeyArgs) => payloads.RotateAuthenticationKey; /** * Rotates the authentication key and records a mapping on chain from the new authentication key to the originating * address of the account. To authorize the rotation, a signature under the old public key on a `RotationProofChallenge` * is given in `current_sig`. To ensure the account owner knows the secret key corresponding to the new public key * in `new_pubkey`, a proof-of-knowledge is given in `new_sig` (i.e., a signature under the new public key on the * same `RotationProofChallenge` struct). */ export declare const rotate_authentication_key_ed25519: ({ args, }: mod.RotateAuthenticationKeyEd25519Args) => payloads.RotateAuthenticationKeyEd25519; //# sourceMappingURL=entry.d.ts.map