import { ProxyManager } from "./proxy.js"; export interface IResponse { platform: string; username: string; available: boolean | null; message: string; error?: string | null; suggestions?: string | null; } interface IClientOptions { suggestions?: { enabled?: boolean; amount?: number; verification?: boolean; }; } export declare class Client { proxy: ProxyManager; collection: Map; constructor(options?: IClientOptions); roblox(username: string): Promise; minecraft(username: string): Promise; github(username: string): Promise; xbox(username: string): Promise; steam(username: string): Promise; instagram(username: string): Promise; discord(username: string): Promise; tiktok(username: string): Promise; youtube(username: string): Promise; soloto(username: string): Promise; } export {}; //# sourceMappingURL=client.d.ts.map