import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
declare const DoricQuest: {
    age: string;
    description: string;
    difficulty: QuestDifficulty;
    id: number;
    length: QuestLength;
    members: boolean;
    miniquest: boolean;
    name: string;
    questPoints: number;
    recommendations: ({
        name: string;
        note: string;
        type: string;
        quantity?: undefined;
    } | {
        name: string;
        quantity: number;
        type: string;
        note?: undefined;
    })[];
    recommendedPrayers: never[];
    recommendedSkills: {
        Mining: number;
    };
    requirements: never[];
    rewards: {
        areas: never[];
        experience: {
            amount: number;
            skill: string;
        }[];
        items: {
            name: string;
        }[];
        misc: string[];
        questPoints: number;
        unlocks: {
            description: string;
            url: string;
        }[];
    };
    series: null;
    shortName: string;
    startLocation: string;
    status: QuestStatus;
    steps: string[];
    url: string;
};
export default DoricQuest;
//# sourceMappingURL=DoricQuest.d.ts.map