import type { UserToken } from '../types.js';
import https from 'https';
/**
 * Talk with the Micrio dashboard CLI API (https://dash.micr.io/api/cli/*)
 * @see https://github.com:Q42/Micrio/server/dash.micr.io for the server code (Q42 only -- might open source one day)
 */
export declare const api: <T>(account: UserToken, agent: https.Agent, path: string, data?: Object) => Promise<T | undefined>;
