import type { LatestGlucoseProps, GlucoseEntry, ConfigurationProps } from "./types";
export declare class DexcomClient {
    private username;
    private password;
    private server;
    static get APPLICATION_ID(): string;
    private static get DEXCOM_SERVERS();
    constructor({ username, password, server }: ConfigurationProps);
    getAccountId(): Promise<string>;
    getSessionId(): Promise<string>;
    getEstimatedGlucoseValues({ minutes, maxCount }?: LatestGlucoseProps): Promise<GlucoseEntry[]>;
    private apiUrl;
}
