import { IMessage } from "."; export interface IRestResponse { result: any; status: string; message: IMessage[]; } export declare function isRestResponse(object: any): object is IRestResponse;