import { ITokenRequestOptions } from "@esri/arcgis-rest-request";
export interface IFetchTokenResponse {
    token: string;
    expires: Date;
    username: string;
    ssl: boolean;
    refreshToken?: string;
}
export declare function fetchToken(url: string, requestOptions: ITokenRequestOptions): Promise<IFetchTokenResponse>;
