import { HandleFormationChange } from './Pitch/types';

interface CustomSelectProps {
    formationsData: string[];
    handleFormationChange: HandleFormationChange;
}
export default function CustomSelect({ formationsData, handleFormationChange }: CustomSelectProps): import("react/jsx-runtime").JSX.Element;
export {};
