/**
 * MCP Server Configuration
 *
 * Minimal configuration - no secrets required.
 * All authentication happens on the backend.
 */
export interface ServerConfig {
    apiEndpoint: string;
    oauthBaseUrl: string;
    disableAuth?: boolean;
}
/**
 * Get server configuration
 * These can be hardcoded since they're public endpoints
 */
export declare function getServerConfig(): ServerConfig;
//# sourceMappingURL=server-config.d.ts.map