export interface ITenant {
    active: boolean;
    added_on: string;
    cms_url: string;
    email: string;
    expired_on: string;
    is_admin: boolean;
    is_staff: boolean;
    key: string;
    lms_url: string;
    name: string;
    org: string;
    portal_url: string;
    public: string;
    user_active: boolean;
    user_id: number;
    username: string;
}
export declare function fetchUserTenants(lmsUrl: string): Promise<ITenant[]>;
export declare function fetchUserTokens(lmsUrl: string, platformKey: string): Promise<any>;
