import { z } from "zod"; export declare enum SubscriptionFeatureLimitType { NOT_INCLUDED = 0, INCLUDED = 1, MONTHLY = 2, MAX = 3, UNLIMITED = 4 } export declare const ZSubscriptionFeatureLimitType: z.ZodEnum; export type TSubscriptionFeatureLimitType = z.infer;