import { NeyslaModel } from "./model"; import type { NeyslaConfig, NeyslaRequestOptions, NeyslaResponse } from "../types"; export interface NeyslaService { setModel(name: string | string[]): NeyslaModel; } type ModelerMap = Record; export declare class Neysla { init(config: NeyslaConfig | NeyslaConfig[]): Promise; static get(data: NeyslaRequestOptions): Promise>; static head(data: NeyslaRequestOptions): Promise>; static post(data: NeyslaRequestOptions): Promise>; static patch(data: NeyslaRequestOptions): Promise>; static put(data: NeyslaRequestOptions): Promise>; static remove(data: NeyslaRequestOptions): Promise>; } export {};