Variable PropertiesSchemaConst

PropertiesSchema: Zod.z.ZodObject<
    {
        groups: Zod.z.ZodOptional<
            Zod.z.ZodArray<
                Zod.z.ZodObject<
                    { id: Zod.z.ZodString; label: Zod.z.ZodString },
                    "strip",
                    Zod.z.ZodTypeAny,
                    { id: string; label: string },
                    { id: string; label: string },
                >,
                "many",
            >,
        >;
        properties: Zod.z.ZodArray<
            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;
                },
            >,
            "many",
        >;
        version: Zod.z.ZodNumber;
    },
    "strip",
    Zod.z.ZodTypeAny,
    {
        groups?: { id: string; label: string }[];
        properties: {
            group?: string;
            id: string;
            label: string;
            path: string;
            type: LottiePropertyTypeEnum;
            value?: unknown;
        }[];
        version: number;
    },
    {
        groups?: { id: string; label: string }[];
        properties: {
            group?: string;
            id: string;
            label: string;
            path: string;
            type?: TEXT | FILL_COLOR;
            value?: unknown;
        }[];
        version: number;
    },
> = ...
MMNEPVFCICPMFPCPTTAAATR