import { buildV1 } from "./v1/index.js"; export interface ClientOptions { /** * Base URL of the API server. * * @default "https://localhost:7777/api" */ baseUrl?: string; /** * Access token to use for authentication. */ accessToken: string; } export interface Client { readonly v1: ReturnType; } export declare function createClient(options: ClientOptions): Client;