import { CoreDate } from "@nmshd/core-types"; import { ClientResult } from "./ClientResult"; import { RESTClient } from "./RESTClient"; export interface IAuthenticationRequest { grantType: string; clientId: string; clientSecret: string; username: string; password: string; } export interface IAuthenticationResponse { expiry: CoreDate; token: string; } export declare class AuthClient extends RESTClient { authenticate(params: IAuthenticationRequest): Promise>; } //# sourceMappingURL=AuthClient.d.ts.map