import { type NumberToHexErrorType } from '../encoding/toHex.js'; import type { ErrorType } from '../errors/utils.js'; import type { Hex } from '../types/data.js'; import type { CompactSignature } from '../types/signature.js'; export type ParseCompactSignatureErrorType = NumberToHexErrorType | ErrorType; export declare function parseCompactSignature(signatureHex: Hex): CompactSignature; //# sourceMappingURL=parseCompactSignature.d.ts.map