import { AnyObject, Params, PinejsClientCore } from 'pinejs-client-core'; interface BackendParams { apiUrl: string; apiVersion: string; apiKey?: string; request: { send: (options: AnyObject) => Promise<{ body: any; }>; }; auth: import('balena-auth').default; } export declare class BalenaPine extends PinejsClientCore { backendParams: BackendParams; API_URL: string; API_VERSION: string; constructor(params: Params, backendParams: BackendParams); _request(options: { method: string; url: string; body?: AnyObject; } & AnyObject): Promise; } export {};