import type React from "react";
interface InterventionSearchProps {
    value: string;
    onChange: (value: string) => void;
    apiUrl: string;
}
export declare const InterventionSearch: React.FC<InterventionSearchProps>;
export {};
