import { FullAuthUtil } from './baseAuthUtils'; import { Auth } from '../../generators/postman/definitions'; import { SecuritySchemeObject } from '../../generators/openapi/definitions'; /** * {@include ../../../typedocIncludes/auth/basicAuthUtil.md} */ export declare class BasicAuthUtil extends FullAuthUtil { protected password?: string; protected username?: string; setDescription(description: string): this; setPassword(password: string): this; getPassword(): string | undefined; removePassword(): string | undefined; setUsername(username: string): this; getUsername(): string | undefined; removeUsername(): string | undefined; toPostman(): Auth; toOpenAPI(): Record; }