import { mongodb } from '@unchainedshop/mongodb'; import type { TimestampFields } from '@unchainedshop/mongodb'; export type File = { _id: string; expires: Date | null; path: string; meta?: Record; name: string; size?: number; type?: string; url?: string; } & TimestampFields; export type SignedFileUpload = File & { putURL: string; }; export declare const MediaObjectsCollection: (db: mongodb.Db) => Promise>;