import { ChipProps } from '@mui/material';
import { SCEventLocationFilterType } from '@selfcommunity/types';
export interface LocationEventsFilterProps extends ChipProps {
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    value: SCEventLocationFilterType;
    disabled?: boolean;
    autoHide?: boolean;
    handleOnChange: (event: any) => void;
}
export default function LocationEventsFilter(inProps: LocationEventsFilterProps): JSX.Element;
