Variable GroupSuggestionSchemaConst
GroupSuggestionSchema: ZodObject<
{
html: ZodOptional<ZodString>;
labels: ZodOptional<
ZodArray<
ZodObject<
{
text: ZodOptional<ZodString>;
title: ZodOptional<ZodString>;
type: ZodOptional<
ZodCustom<
string & {}
| "ADMIN"
| "SINGLE"
| "MULTIPLE",
string & {} | "ADMIN" | "SINGLE" | "MULTIPLE",
>,
>;
},
$loose,
>,
>,
>;
name: ZodOptional<ZodString>;
},
$loose,
> = ...