import { DotCMSAuthorizationLoginParams } from '../models'; /** * DotCMS Authentication handler to intereact with {@link https://dotcms.com/docs/latest/rest-api-authentication | Authentication API} * */ export declare class DotApiAuthorization { /** * Given user, password and expiration date to get a DotCMS Autorization Token */ getToken(params: DotCMSAuthorizationLoginParams): Promise; }