import { Promise } from "../../common/Exports"; export interface IAuthentication { Fetch(authFetchEventId: string): Promise; FetchOnExpiry(authFetchEventId: string): Promise; } export declare class AuthInfo { private headerName; private token; constructor(headerName: string, token: string); readonly HeaderName: string; readonly Token: string; }