import { type ConcatErrorType } from '../data/concat.js'; import { type BytesToHexErrorType, type StringToHexErrorType } from '../encoding/toHex.js'; import type { ErrorType } from '../errors/utils.js'; import type { Hex } from '../types/data.js'; import type { SignableMessage } from '../types/signature.js'; export type ToPrefixedMessageErrorType = ConcatErrorType | StringToHexErrorType | BytesToHexErrorType | ErrorType; export declare function toPrefixedMessage(message_: SignableMessage): Hex; //# sourceMappingURL=toPrefixedMessage.d.ts.map