/** * Shared task endpoint mapping */ import { TaskType } from "../constants.js"; /** * All endpoint base paths in priority order for auto-inference */ export declare const ALL_TASK_ENDPOINTS: string[]; /** * Task types that have list endpoints (excludes rigging and animation which have no list API) */ export declare const LIST_CAPABLE_TASK_TYPES: TaskType[]; /** * Map task type to its API endpoint base path */ export declare function getTaskEndpoint(taskType: TaskType): string;