import { IncomingMessage } from 'http';
import { AuthenticationOptions } from './AuthenticationOptions';
export interface IAuthenticator {
    authenticate(request: IncomingMessage, options: AuthenticationOptions): Promise<{
        identifier: string;
    }>;
}
