export declare const SETTINGS_PATH: string; export declare const SERVICE_NAMES: readonly ["figma", "atlassian", "google-chat"]; export type ServiceName = (typeof SERVICE_NAMES)[number]; export interface LocalMcpSettings { port?: number; services?: { figma?: { host?: string; token?: string; }; atlassian?: { host?: string; email?: string; apiToken?: string; }; "google-chat"?: { clientId?: string; clientSecret?: string; refreshToken?: string; }; }; } export interface ServiceStatus { name: ServiceName; enabled: boolean; missing: string[]; endpoint: string; } export declare function loadSettings(): LocalMcpSettings; export declare function saveSettings(settings: LocalMcpSettings): void; export declare function suggestSettings(): LocalMcpSettings; export declare function ensureSettingsFile(): boolean; export declare function applySettingsToEnv(settings?: LocalMcpSettings): void; export declare function getServiceStatuses(settings?: LocalMcpSettings): ServiceStatus[]; export declare function getPort(settings?: LocalMcpSettings): number; //# sourceMappingURL=settings.d.ts.map