import BasicAuthCredentials from './../type/basic-auth-credentials'; declare class BasicAuthHeaderParser { private header_value; constructor(header_value: string); parse(): BasicAuthCredentials; private getHeaderValue; } export default BasicAuthHeaderParser;