/** * Configuration constants for Morph Git SDK */ /** Default proxy URL for Morph git operations */ declare const DEFAULT_PROXY_URL = "https://repos.morphllm.com"; /** * Validate API key format */ declare function validateApiKey(apiKey: string): void; export { DEFAULT_PROXY_URL, validateApiKey };