import React from "react"; export interface ISearchHeaderProps { searchPlaceholder?: string; searchKey?: string; onChange?: (e: React.ChangeEvent) => void; clearKeyword?: () => void; isShowCancelBtn?: boolean; setSearchKey: (key: string) => void; isSearchMode: boolean; handleClose: () => void; } declare const SearchHeader: React.FC; export default SearchHeader;