export interface AuthResponse {
    AccessToken: string;
}
export declare function authenticate(baseURL: string, UserName: string, Password: string): Promise<AuthResponse>;
