import { type NumberToHexErrorType } from '../encoding/toHex.js'; import type { ErrorType } from '../errors/utils.js'; import type { Hex } from '../types/data.js'; export type ParseSignatureErrorType = NumberToHexErrorType | ErrorType; export declare function parseSignature(signatureHex: Hex): { r: `0x${string}`; s: `0x${string}`; v: number; yParity: number; } | { r: `0x${string}`; s: `0x${string}`; yParity: number; v?: never; }; //# sourceMappingURL=parseSignature.d.ts.map