import { RouterConfiguration } from '../types/router-config.js';
/**
 * Wrapper around the Claude Code Router server
 */
export declare class ClaudeRouterService {
    private server?;
    private readonly config;
    private readonly logger;
    private readonly port;
    constructor(config: RouterConfiguration);
    initialize(): Promise<void>;
    isEnabled(): boolean;
    getProxyUrl(): string;
    getProxyKey(): string;
    stop(): Promise<void>;
}
//# sourceMappingURL=claude-router-service.d.ts.map