import type { FetchFn } from "../types.js"; import { TokenService } from "./tokens.js"; interface FpServiceOptions { apiKey: string; baseUrl?: string; fetch: FetchFn; } export declare class FpService { readonly tokens: TokenService; constructor({ apiKey, baseUrl, fetch, }: FpServiceOptions); } export {};