import { LokaliseApi } from "@lokalise/node-api";
/**
 * Gets or creates the Lokalise API instance.
 * This is a singleton instance.
 * Configuration must be loaded before calling this function.
 * @returns The initialized LokaliseApi instance.
 * @throws {McpError} if LOKALISE_API_KEY is not configured.
 */
export declare function getLokaliseApi(): LokaliseApi;
/**
 * Resets the Lokalise API singleton instance.
 * This forces the API client to be recreated with new configuration
 * on the next call to getLokaliseApi().
 */
export declare function resetLokaliseApi(): void;
