import { RpcResponseModel } from "./types";
export declare function callPublicMethod(url: string, method: string, data: any): Promise<RpcResponseModel>;
export declare function callProtectedMethod(url: string, method: string, data: any, token: string): Promise<RpcResponseModel>;
