import React from 'react'; interface FilterBarProps { isShowFilter: boolean; onClear: () => void; onReset: () => void; onSubmit: () => void; onSetIsShowFilter: () => void; } declare const FilterBar: React.FC; export default FilterBar;