/** * * `LIST` - LIST * * `PROJECT` - PROJECT */ export declare const CollectionTypeEnum: { readonly List: "LIST"; readonly Project: "PROJECT"; }; export type CollectionTypeEnum = (typeof CollectionTypeEnum)[keyof typeof CollectionTypeEnum];