/** * Parses a Solana private key from various formats. * Supports JSON array format, comma-separated byte values, and base58 values. * * @param rawKey - Raw private key string in JSON array, comma-separated, or base58 format * @returns Uint8Array representation of the private key * @throws Error if the key format is invalid */ export declare function parseSolanaPrivateKey(rawKey: string): Uint8Array; //# sourceMappingURL=solanaKeyParser.d.ts.map