import { Clip, GetAchievementsReponse, GetActivityResponse, GetClipsResponse, GetScreenshotsResponse } from './types';
export declare function getXuid(gamertag: string): Promise<string>;
export declare function getClipsForGamer(gamertag: string, continueToken?: string): Promise<GetClipsResponse>;
export declare function getDetailsForClip(gamertag: string, clipId: string): Promise<Clip | undefined>;
export declare function getScreenshotsForGamer(gamertag: string, continueToken?: string): Promise<GetScreenshotsResponse>;
export declare function getAchievementsForGamer(gamertag: string, continueToken?: string): Promise<GetAchievementsReponse>;
export declare function getActivityForGamer(gamertag: string, continueToken?: string): Promise<GetActivityResponse>;
