import { isly } from "isly"; export type Risk = (typeof Risk.values)[number]; export declare namespace Risk { const values: readonly ["low", "medium", "high", "prohibited"]; const type: isly.Type<"low" | "medium" | "high" | "prohibited">; }