import React from 'react'; import MatchFilters from 'fansunited-sdk-esm/Core/Namespaces/Football/Models/Match/MatchFilters'; type MatchesSelectFiltersProps = { filters: MatchFilters; cutoffTime: string | null; onChangeIds: (ids: string[], key: string) => void; onChangeDates: (event: React.ChangeEvent) => void; }; declare const MatchesSelectFilters: React.FC; export default MatchesSelectFilters;