///
import { ICommonFilterProps } from "./types";
type TProps = ICommonFilterProps & {
value: string[] | null;
onChange: (value: string | string[] | null) => void;
};
declare const CommonFilter: ({ name, labelPrefix, options, trackEventName, multiSelect, value, onChange, iconType }: TProps) => JSX.Element;
export default CommonFilter;