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 SignatureToCompactSignatureErrorType = HexToBytesErrorType | BytesToHexErrorType | ErrorType; export declare function signatureToCompactSignature(signature: Signature): CompactSignature; //# sourceMappingURL=signatureToCompactSignature.d.ts.map