import { IGateway } from '../interfaces'; import { Content } from '../types'; export declare class ConsoleGateway implements IGateway { private readonly logger; send(to: string, content: Content): Promise; }