type Credentials = { name: string; password: string; }; declare const createBasicAuthHandler: (authInfo: Credentials, unauthorizedText?: string, skip?: boolean | ((request: Request) => boolean | undefined)) => (request: Request) => Response; export default createBasicAuthHandler;