import { AuthMethod } from '../../../helper/authMethod' /** * Extract user/pass from user authentication request and, * execute the handler function * @param handler - Check the authorization of user/pass * @returns AuthMethod */ export declare const userPass: ( handler: (user: string, pass: string) => boolean ) => AuthMethod