export declare class Account {
    constructor(accountId: string, keyId: string, keySecret: string);
    getAccountId(): string;
    getOwnerId(): string;
    getKeyId(): string;
    getGA(): boolean;
    setGA(bGA: boolean): void;
    getHttps(): boolean;
    setHttps(bHttps: boolean): void;
    hmac_sha1(text: string, encoding?: string): any;
    b64md5(text: string): string;
    private _accountId;
    private _keyId;
    private _keySecret;
    private _bGoogleAnalytics;
    private _bHttps;
}
