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