import { AxiosInstance } from 'axios'; export interface PublicCallOptions { axios: AxiosInstance; host: string; path: string; method: 'GET' | 'POST' | 'DELETE' | 'PUT'; data?: { [name: string]: any; }; headers?: HeadersInit; } export declare function publicCall(options: PublicCallOptions): Promise;