import { type OutgoingMessage } from '../../HTTP'; import { type Directive, type Identity } from './types'; export declare class Echo implements Directive { authorize(identity: Identity | null): boolean; reply(identity: Identity | null): OutgoingMessage; }