import React, { FC } from "react"; interface LinkedFilterProps { onChange: (value: any) => void; multipleIcon: React.ReactNode; config: ConfigItem[]; isShow?: string[]; } interface ConfigItem { key: string; label: string; width?: number | string; defaultValue?: any; type: "input" | "select" | "rangeDate" | "spaceCompact"; isAllowClear?: boolean; placeholder: string; mode?: "multiple" | "tags"; children: ConfigItem[]; options?: any[]; request?: () => Promise; validation?: any; filterOption?: (input: any, option: any) => any; handleResponse?: (response: any) => any[]; } declare const LinkedFilter: FC; export default LinkedFilter;