import { Brain, Inference, Sensor, SensorConfig, Stringifiable, Task, TaskType } from '@iucteam/lot';
export interface HttpDeleteInput extends Record<string, unknown> {
    url: string;
    headers?: Record<string, string>;
}
/**
 * A tool able to send HTTP DELETE request to a resource using fetch.
 * Name and description can be customised, by default are respectively set to:
 * 'httpDelete' and 'allows to execute HTTP DELETE request toward a resource identified via the url property'
 *
 * To customise the behaviour override the HttpDelete#use method
 */
export declare class HttpDelete extends Sensor {
    constructor(sensorConfig: SensorConfig, brain?: Brain<Stringifiable>);
    detect(task: Task<HttpDeleteInput>): Promise<Inference<Stringifiable>[]>;
    getSchema(): string;
    getAgentCapabilities(): TaskType[];
}
