import type { NeyslaConfig, NeyslaModelRequestOptions, NeyslaResponse } from "../types"; export declare class NeyslaModel { #private; constructor(config: NeyslaConfig, name: string | string[]); get(data?: NeyslaModelRequestOptions): Promise>; head(data?: NeyslaModelRequestOptions): Promise>; post(data?: NeyslaModelRequestOptions): Promise>; patch(data?: NeyslaModelRequestOptions): Promise>; put(data?: NeyslaModelRequestOptions): Promise>; remove(data?: NeyslaModelRequestOptions): Promise>; get modelerName(): string; }