/// export interface IFilterProps { value: (string | number)[]; options?: string[]; map?: any; onClick: (value: string) => void; } declare const _default: ({ value, options, map, onClick }: IFilterProps) => JSX.Element | null; export default _default;