import { BaseClient } from '../../shared/base-client';
import { RugCheckTokenReport } from './types';
export declare class RugCheckClient extends BaseClient {
    constructor(baseUrl?: string);
    getTokenReport(tokenAddress: string): Promise<RugCheckTokenReport>;
}
