import { D365Config } from "./types.js";
export declare class D365AuthService {
    private config;
    private currentToken;
    constructor(config: D365Config);
    getAccessToken(): Promise<string>;
    private authenticate;
    getAuthHeaders(): Promise<Record<string, string>>;
}
