/** * Validates that a task ID contains only safe characters. * * Expects: any string value. * Returns: true if value matches [a-zA-Z0-9._-]+, false otherwise. */ export declare function taskIdIsSafe(value: string): boolean; //# sourceMappingURL=taskIdIsSafe.d.ts.map