import { type HexToBigIntErrorType } from '../encoding/fromHex.js'; import type { ErrorType } from '../errors/utils.js'; import type { Hex } from '../types/data.js'; import type { CompactSignature } from '../types/signature.js'; export type SerializeCompactSignatureErrorType = HexToBigIntErrorType | ErrorType; export declare function serializeCompactSignature({ r, yParityAndS, }: CompactSignature): Hex; //# sourceMappingURL=serializeCompactSignature.d.ts.map