createWorkspaceSchema: ZodObject<{
    image: ZodOptional<ZodUnion<[ZodType<File, ZodTypeDef, File>, ZodEffects<ZodString, undefined | string, string>]>>;
    name: ZodString;
}, "strip", ZodTypeAny, {
    image?: string | File;
    name: string;
}, {
    image?: string | File;
    name: string;
}> = ...