export declare const ROOT: "/api"; export declare const METRICS_ROOT: "/metrics"; export declare const BULLBOARD_ROOT: "/queues"; export declare const REST_API: { readonly AUTH: { readonly LOGIN: "/api/auth/login"; readonly REGISTER: "/api/auth/register"; readonly GET_STATUS: "/api/auth/status"; readonly OAUTH2: { readonly TELEGRAM_CALLBACK: "/api/auth/oauth2/tg/callback"; readonly AUTHORIZE: "/api/auth/oauth2/authorize"; readonly CALLBACK: "/api/auth/oauth2/callback"; }; }; readonly API_TOKENS: { readonly CREATE: "/api/tokens/"; readonly DELETE: (uuid: string) => string; readonly GET: "/api/tokens/"; }; readonly TARGETS: { readonly CREATE: "/api/targets/"; readonly DELETE: (uuid: string) => string; readonly GET: "/api/targets/"; readonly GET_BY_UUID: (uuid: string) => string; readonly UPDATE: (uuid: string) => string; readonly ACTIONS: { readonly REORDER: "/api/targets/actions/reorder"; }; }; readonly ACCESS_LINKS: { readonly CREATE: "/api/access-links/"; readonly GET: "/api/access-links/"; readonly GET_BY_UUID: (uuid: string) => string; readonly DELETE: (uuid: string) => string; }; readonly PUBLIC: { readonly GET_SYNAPSE_CONFIG: "/api/public/synapse"; readonly GET_REPORT: (uuid: string) => string; readonly SUBMIT_REPORT: (uuid: string) => string; }; readonly REPORTS: { readonly GET: (uuid: string) => string; readonly DELETE: (uuid: string) => string; readonly GET_REPORTS_BY_ACCESS_LINK_UUID: (uuid: string) => string; }; }; //# sourceMappingURL=routes.d.ts.map