export declare const QuestStatus: { readonly notStarted: "not-started"; readonly inProgress: "in-progress"; readonly claimable: "claimable"; readonly completed: "completed"; readonly disabled: "disabled"; }; export type QuestStatusType = (typeof QuestStatus)[keyof typeof QuestStatus]; export declare const QuestCriteriaStatus: { readonly notStarted: "not-started"; readonly partiallyFulfilled: "partially-fulfilled"; readonly fulfilled: "fulfilled"; }; export type QuestCriteriaStatusType = (typeof QuestCriteriaStatus)[keyof typeof QuestCriteriaStatus]; export type QuestCriteriaType = { status: QuestCriteriaStatusType; criteria: string; };