import { type HexToBytesErrorType } from '../encoding/toBytes.js'; import { type BytesToHexErrorType } from '../encoding/toHex.js'; import type { ErrorType } from '../errors/utils.js'; import type { CompactSignature, Signature } from '../types/signature.js'; export type CompactSignatureToSignatureErrorType = BytesToHexErrorType | HexToBytesErrorType | ErrorType; export declare function compactSignatureToSignature({ r, yParityAndS, }: CompactSignature): Signature; //# sourceMappingURL=compactSignatureToSignature.d.ts.map