/// import './customSearch.scss'; interface ICustomSearchProps { customSearchData: any; onSearch: any; onChange: any; planeQuery: string; onEnterButtonClick: () => void; onCheckBoxChecked: boolean; isLoading: boolean; onClearSearch: boolean; onSearchTextChange: string; showEmptyOption: boolean; onClearButton?: any; } export declare const CustomSearch: (props: ICustomSearchProps) => JSX.Element; export {};