import type React from "react";
interface QuickSearchProps {
    onSearch?: (searchUrl: string) => void;
    apiUrl: string;
}
export declare const QuickSearch: React.FC<QuickSearchProps>;
export {};
