/**
 * Service Configuration Constants
 * Centralized service URLs and port configurations
 */
export declare const SERVICE_PORTS: {
    readonly NARRATOR: 9002;
    readonly HUB: 9003;
    readonly RENDERER: 9004;
    readonly SCRAPER: 9001;
};
export declare const SERVICE_URLS: {
    readonly NARRATOR: string;
    readonly HUB: string;
    readonly RENDERER: string;
    readonly SCRAPER: string;
};
export declare const API_ENDPOINTS: {
    readonly NARRATOR: {
        readonly SYNTHESIZE: "/v1/synthesize";
        readonly HEALTH: "/health";
    };
    readonly RENDERER: {
        readonly RENDER_SINGLE: "/v1/renderSingle";
        readonly RENDER_WITH_SPEECH_MARKS: "/v1/renderWithSpeechMarks";
        readonly TEST_FFMPEG: "/v1/testFFmpeg";
        readonly HEALTH: "/health";
    };
    readonly HUB: {
        readonly CREATE_VIDEO_WITH_SPEECH_MARKS: "/v1/video/createWithSpeechMarks";
        readonly METADATA: "/v1/metadata";
        readonly HEALTH: "/health";
    };
    readonly SCRAPER: {
        readonly SCRAPE: "/v1/scrape";
        readonly HEALTH: "/health";
    };
};
