import { ChipProps } from '@mui/material';
export interface OngoingEventsFilterProps extends ChipProps {
    autoHide?: boolean;
    showOngoingEvents: boolean;
    handleClick: () => void;
    handleDeleteClick?: () => void;
}
export default function OngoingEventsFilter(inProps: OngoingEventsFilterProps): JSX.Element;
