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