import { z } from "zod";
import { type HierarchyLevelDefinition, type NumericEvaluation, type PromptingHierarchyLevelType } from "./types/index.js";
export declare const PromptingHierarchyLevel: z.ZodEnum<["independent", "indirect", "direct", "modeling", "scaffolding", "full-physical"]>;
export type PromptingHierarchyLevel = PromptingHierarchyLevelType;
export type { NumericEvaluation, HierarchyLevelDefinition };
export declare const HIERARCHY_LEVEL_DEFINITIONS: HierarchyLevelDefinition[];
export declare function promptingHierarchyEvaluator(args: unknown): Promise<{
    content: {
        type: "text";
        text: string;
    }[];
}>;
//# sourceMappingURL=prompting-hierarchy-evaluator.d.ts.map