import { XPAddress } from "../avalancheAccount.js"; /** * Converts a private key to an XP address. * * @param privateKey - The private key to convert. * @param hrp - The human readable prefix to use for the address. * @returns The XP address as a `0x` prefixed string. * * @example * ```ts * import { privateKeyToXPAddress } from "@avalanche-sdk/client/accounts"; * * const address = privateKeyToXPAddress("0xab....", "avax"); * console.log(address); * ``` */ export declare function privateKeyToXPAddress(privateKey: string, hrp: string): XPAddress; //# sourceMappingURL=privateKeyToXPAddress.d.ts.map