import { DynamicWidgetModel, StaticWidgetModel } from "./widget.js"; import { z } from "zod/mini"; //#region src/model/customType.d.ts declare const StaticCustomTypeModelTabSchema: z.ZodMiniRecord, z.ZodMiniType>>; type StaticCustomTypeModelTab = z.infer; declare const DynamicCustomTypeModelTabSchema: z.ZodMiniRecord, z.ZodMiniType>>; type DynamicCustomTypeModelTab = z.infer; declare const StaticCustomTypeModelSchema: z.ZodMiniObject<{ id: z.ZodMiniString; label: z.ZodMiniOptional>>; repeatable: z.ZodMiniDefault>; json: z.ZodMiniRecord, z.ZodMiniRecord, z.ZodMiniType>>>; status: z.ZodMiniDefault>; format: z.ZodMiniDefault>; }, z.core.$strip>; type StaticCustomTypeModel = z.infer; declare const DynamicCustomTypeModelSchema: z.ZodMiniObject<{ id: z.ZodMiniString; label: z.ZodMiniOptional>>; repeatable: z.ZodMiniDefault>; json: z.ZodMiniRecord, z.ZodMiniRecord, z.ZodMiniType>>>; status: z.ZodMiniDefault>; format: z.ZodMiniDefault>; }, z.core.$strip>; type DynamicCustomTypeModel = z.infer; /** @deprecated Use DynamicCustomTypeModel instead */ type CustomTypeModel = DynamicCustomTypeModel; //#endregion export { CustomTypeModel, DynamicCustomTypeModel, DynamicCustomTypeModelTab, StaticCustomTypeModel, StaticCustomTypeModelTab }; //# sourceMappingURL=customType.d.ts.map