import { Action, Response } from 'integreat'; import { Collection, MongoClient } from 'mongodb'; import { Connection } from './types.js'; export declare const getCollection: (action: Action, client: MongoClient) => Collection | undefined; export default function send(action: Action, connection: Connection | null): Promise;