Variable PropertySchemaConst

PropertySchema: Zod.z.ZodObject<
    {
        group: Zod.z.ZodOptional<Zod.z.ZodString>;
        id: Zod.z.ZodString;
        label: Zod.z.ZodString;
        path: Zod.z.ZodString;
        type: Zod.z.ZodDefault<Zod.z.ZodNativeEnum<typeof LottiePropertyTypeEnum>>;
        value: Zod.z.ZodOptional<Zod.z.ZodUnknown>;
    },
    "strip",
    Zod.z.ZodTypeAny,
    {
        group?: string;
        id: string;
        label: string;
        path: string;
        type: LottiePropertyTypeEnum;
        value?: unknown;
    },
    {
        group?: string;
        id: string;
        label: string;
        path: string;
        type?: TEXT
        | FILL_COLOR;
        value?: unknown;
    },
> = ...