import Connection from './entities/Connection'; import Emote from './entities/Emote'; interface APIResponse { data: APIError | unknown; status: number; } interface APIError { status_code: number; status: string; error: string; error_code: number; } export declare class SevenTVClient { private readonly endpoint; constructor(); apiGET(path: string, headers?: Record): Promise; getTwitchUser(userID: string): Promise; getEmotes(userID: string): Promise; } declare const SevenTV: SevenTVClient; export default SevenTV; //# sourceMappingURL=index.d.ts.map