export declare const TaskState: { readonly Success: "Success"; readonly ApiError: "API Error"; readonly InternalServerError: "Internal Server Error"; }; export type TaskState = (typeof TaskState)[keyof typeof TaskState];