import MatchBasicModel from 'fansunited-sdk-esm/Core/Namespaces/Football/Models/Match/MatchBasicModel'; import React from 'react'; type SelectedMatchesProps = { matches: MatchBasicModel[]; isFixtureEditable: boolean; moveMatchToSearch: (match: MatchBasicModel) => void; onChangeFixtures: (matchIds: string[]) => void; }; declare const SelectedMatches: React.FC; export default SelectedMatches;