import type { Portkey } from './index';
export declare class ApiResource {
protected client: Portkey;
protected post: Portkey['_post'];
protected put: Portkey['_put'];
protected getMethod: Portkey['_get'];
protected deleteMethod: Portkey['_delete'];
constructor(client: Portkey);
}