import { z } from 'zod'; /** * Schema for getting all provider configurations (no inputs) */ export declare const getProviderConfigSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare function getProviderConfig(): Promise>>; /** * Schema for updating provider configuration */ export declare const updateProviderConfigSchema: z.ZodObject<{ providerId: z.ZodString; apiKey: z.ZodOptional; baseUrl: z.ZodOptional; model: z.ZodOptional; }, "strip", z.ZodTypeAny, { providerId: string; apiKey?: string | undefined; baseUrl?: string | undefined; model?: string | undefined; }, { providerId: string; apiKey?: string | undefined; baseUrl?: string | undefined; model?: string | undefined; }>; export declare function updateProviderConfig(providerId: string, apiKey?: string, baseUrl?: string, model?: string): Promise<{ success: boolean; }>;