declare class RugCheckApi {
    readonly baseUrl = "https://api.rugcheck.xyz/v1";
    makeRequest(endpoint: string, options?: RequestInit): Promise<any>;
}

export { RugCheckApi };
