import { StrictSign, StrictNoSign, type Message } from '@libp2p/interface'; import { RPC } from '../message/rpc.js'; import { type PublishConfig, type TopicStr, ValidateError } from '../types.js'; export declare const SignPrefix: Uint8Array; export interface RawMessageAndMessage { raw: RPC.Message; msg: Message; } export declare function buildRawMessage(publishConfig: PublishConfig, topic: TopicStr, originalData: Uint8Array, transformedData: Uint8Array): Promise; export type ValidationResult = { valid: true; message: Message; } | { valid: false; error: ValidateError; }; export declare function validateToRawMessage(signaturePolicy: typeof StrictNoSign | typeof StrictSign, msg: RPC.Message): Promise; //# sourceMappingURL=buildRawMessage.d.ts.map