import { z } from "zod"; export declare enum SubscriptionPriceType { ONE_TIME = 0, RECURRING = 1 } export declare const ZSubscriptionPriceType: z.ZodEnum; export type TSubscriptionPriceType = z.infer;