import { Promise } from "../common/Exports"; export interface IAuthentication { fetch(authFetchEventId: string): Promise; fetchOnExpiry(authFetchEventId: string): Promise; } export declare class AuthInfo { private privHeaderName; private privToken; constructor(headerName: string, token: string); readonly headerName: string; readonly token: string; }