import { z } from 'zod'; declare const PRIORITY_VALUES: readonly ["p1", "p2", "p3", "p4"]; export type Priority = (typeof PRIORITY_VALUES)[number]; export declare const PRIORITY_INPUT_DESCRIPTION = "Task priority as a string: \"p1\" (highest), \"p2\" (high), \"p3\" (medium), or \"p4\" (lowest/default). Integers like 1, 2, 3, or 4 are not accepted."; export declare const PrioritySchema: z.ZodEnum<{ p1: "p1"; p2: "p2"; p3: "p3"; p4: "p4"; }>; export declare function convertPriorityToNumber(priority: Priority): number; export declare function convertNumberToPriority(priority: number): Priority | undefined; export {}; //# sourceMappingURL=priorities.d.ts.map