import { SignedMessage, MessageBody, Signature, KeyFile } from './types'; export declare const isMessageBody: (obj: any) => obj is MessageBody; export declare const isSignature: (obj: any) => obj is Signature; export declare const isMessage: (obj: any) => obj is SignedMessage; export declare const isKeyFile: (obj: any) => obj is KeyFile;