Folder: ZodObject<{
    ContentTypeOrder: ZodArray<ZodString, "many">;
    Exists: ZodBoolean;
    IsWOPIEnabled: ZodBoolean;
    ItemCount: ZodNumber;
    Name: ZodString;
    ProgID: ZodNullable<ZodString>;
    ServerRelativePath: ZodType<IResourcePath, ZodTypeDef, IResourcePath>;
    ServerRelativeUrl: ZodString;
    StorageMetrics: ZodOptional<ZodType<IStorageMetrics, ZodTypeDef, IStorageMetrics>>;
    TimeCreated: ZodString;
    TimeLastModified: ZodString;
    UniqueContentTypeOrder: ZodArray<ZodString, "many">;
    UniqueId: ZodString;
    WelcomePage: ZodString;
}, "strip", ZodTypeAny, {
    ContentTypeOrder?: string[];
    Exists?: boolean;
    IsWOPIEnabled?: boolean;
    ItemCount?: number;
    Name?: string;
    ProgID?: string;
    ServerRelativePath?: IResourcePath;
    ServerRelativeUrl?: string;
    StorageMetrics?: IStorageMetrics;
    TimeCreated?: string;
    TimeLastModified?: string;
    UniqueContentTypeOrder?: string[];
    UniqueId?: string;
    WelcomePage?: string;
}, {
    ContentTypeOrder?: string[];
    Exists?: boolean;
    IsWOPIEnabled?: boolean;
    ItemCount?: number;
    Name?: string;
    ProgID?: string;
    ServerRelativePath?: IResourcePath;
    ServerRelativeUrl?: string;
    StorageMetrics?: IStorageMetrics;
    TimeCreated?: string;
    TimeLastModified?: string;
    UniqueContentTypeOrder?: string[];
    UniqueId?: string;
    WelcomePage?: string;
}> = ...