import { DetectionResult, BotDetectionParams } from '../types';
export declare class GuardianClient {
    private apiUrl;
    constructor(apiUrl?: string);
    detectBot(params: BotDetectionParams): Promise<DetectionResult>;
    middleware(): (req: any, res: any, next: any) => Promise<void>;
}
