import { SignMessageParameters, SignTypedDataParameters } from 'wagmi/actions'; import { MessageData, Message } from '../types'; type ValidateMessageResult = { type: typeof Message.TYPED_DATA; data: SignTypedDataParameters; } | { type: typeof Message.SIGNABLE_MESSAGE; data: SignMessageParameters; } | { type: typeof Message.INVALID; data: null; }; export declare function validateMessage(messageData: MessageData): ValidateMessageResult; export {}; //# sourceMappingURL=validateMessage.d.ts.map