interface RemoveOptions { timeout?: number; } /** * Remove a document by id from the given collection */ export declare const remove: (id: any, collection: any, options?: RemoveOptions | undefined) => Promise; export {};