import { z } from "zod"; export declare enum PricingModel { FLAT_RATE = 0, PER_SEAT = 1, USAGE_BASED = 2, FLAT_RATE_USAGE_BASED = 3, ONCE = 4, ALL = 5 } export declare const ZPricingModel: z.ZodEnum; export type TPricingModel = z.infer;