import { hc, type ClientRequestOptions } from 'hono/client'; import type * as App from './App.js'; /** Default hosted Tempo API URL. */ export declare const defaultUrl = "https://api.tempo.xyz"; /** Creates a typed client for the hosted Tempo API. */ export declare function create(options?: create.Options): create.ReturnType; /** Typed Hono client for the Tempo API. */ export type Client = ReturnType>; export declare namespace create { /** Typed Hono client returned by {@link create}. */ type ReturnType = Client; /** Options for creating a typed Tempo API client. */ type Options = ClientRequestOptions & { /** API key sent on the canonical `tempo-api-key` header. */ apiKey?: string | undefined; /** Tempo API URL. Defaults to {@link defaultUrl}. */ url?: string | undefined; }; } //# sourceMappingURL=Client.d.ts.map