/** * Fal.ai client wrapper for MCP server */ import { fal } from "@fal-ai/client"; /** * Configure the fal client with API key from environment * Only call this if FAL_KEY is available */ export declare function configureFalClient(): void; /** * Make authenticated HTTP request to fal.ai API */ export declare function falRequest(url: string, options?: RequestInit): Promise; /** * Make HTTP request to fal.ai Platform API without authentication * Platform API v1 endpoints work without auth (with rate limits) * Note: Queue API keys don't work with Platform API v1 */ export declare function publicRequest(url: string, options?: RequestInit): Promise; export { fal }; //# sourceMappingURL=client.d.ts.map