import { IAuthToken } from "../interfaces/IAuthInterface";
declare class BaseData {
    static clientId: string;
    static clientSecret: string;
    static grantType: string;
    static apiKey: string;
    static tokenData: IAuthToken;
    static setClientId(clientId: string): void;
    static setClientSecret(clientSecret: string): void;
    static setGrantType(grantType: string): void;
    static setAPIKey(key: string): void;
    static setAccessTokenData(authResponseData: any): void;
    static resetAccessTokenData(): void;
    static getClientId(): string;
    static getClientSecret(): string;
    static getGrantType(): string;
    static getAPIKey(): string;
    static getAccessTokenData(): IAuthToken;
}
export default BaseData;
//# sourceMappingURL=baseData.d.ts.map