declare const routes: { "content-api": { type: "content-api"; routes: readonly []; }; admin: { type: "admin"; routes: ({ config: { policies: string[]; auth: { scope: string[]; }; }; method: "GET"; path: "/providers"; handler: "narration.providers"; } | { config: { policies: string[]; auth: { scope: string[]; }; }; method: "GET"; path: "/voices"; handler: "narration.voices"; } | { config: { policies: string[]; auth: { scope: string[]; }; }; method: "POST"; path: "/generate"; handler: "narration.generate"; } | { config: { policies: string[]; auth: { scope: string[]; }; }; method: "POST"; path: "/test-tts"; handler: "narration.testTts"; } | { config: { policies: string[]; auth: { scope: string[]; }; }; method: "GET"; path: "/configuration-status"; handler: "narration.settingsStatus"; } | { config: { policies: string[]; auth: { scope: string[]; }; }; method: "GET"; path: "/plugin-info"; handler: "narration.pluginInfo"; })[]; }; }; export default routes;