import { RangePickerProps } from 'antd/lib/date-picker'; export declare const FILTER_TYPE: { readonly input: "input"; readonly select: "select"; readonly dateRange: "date-range"; readonly multiSelectCount: "multi-select-count"; }; export type Option = { value: string; label: string; }; export interface FilterProps { id: string; label: string; type: "input" | "select" | "date-range" | "multi-select-count"; value: string | string[] | number | RangePickerProps["value"]; options?: Option[]; onChange: (updatedFilter: FilterProps) => void; selectedValues?: string[]; colSpan?: number; } declare const Filter: ({ id, label, type, value, options, onChange, selectedValues, colSpan, }: FilterProps) => import("react/jsx-runtime").JSX.Element; export default Filter;