import type { IDEId } from './ide/types.js'; export declare const SERVER_NAME = "vuetify-mcp"; export declare const npx: { path: string; wsl: boolean; pure: boolean; } | null; export declare const defaultConfig: { command: string; args: string[]; env: { VUETIFY_API_KEY: string | undefined; GITHUB_TOKEN: string | undefined; }; }; export declare const httpConfig: { command: string; args: string[]; env: { VUETIFY_API_KEY: string | undefined; GITHUB_TOKEN: string | undefined; }; }; export declare const getSettingsPath: (ide: IDEId) => string; export declare function getRemoteConfig(): { url: string; headers?: Record; }; export declare function getServerConfig(transport?: 'stdio' | 'http', remote?: boolean): { command: string; args: string[]; env: { VUETIFY_API_KEY: string | undefined; GITHUB_TOKEN: string | undefined; }; } | { url: string; headers?: Record; }; export declare function getClaudeCodeArgs(): string[]; export declare function getClaudeCodeCommand(): string; export declare const getSettingsBuilder: (ide: IDEId, transport?: "stdio" | "http", remote?: boolean) => string;