import React from 'react'; import { SizeType } from 'antd/lib/config-provider/SizeContext'; import './index.less'; export interface LabelProps { prefixCls?: string; label: string; value?: string | string[]; disabled?: boolean; onClear?: () => void; size?: SizeType; ellipsis?: boolean; placeholder?: string; expanded?: boolean; className?: string; style?: React.CSSProperties; } declare const LightFilterLabel: React.FC; export default LightFilterLabel;