/** * Recovers a public key from a signature and message. * * @param message - The message that was signed. * @param signature - The signature. * @returns The recovered public key as a `0x` prefixed string. * * @example * ```ts * import { xpRecoverPublicKey } from "@avalanche-sdk/client/accounts"; * * const publicKey = xpRecoverPublicKey("0xab....", "0xab...."); * console.log(publicKey); * ``` */ export declare function xpRecoverPublicKey(message: string, signature: string): string; //# sourceMappingURL=xpRecoverPublicKey.d.ts.map