import type { YwFilterProps } from '../../types'; declare function YwFilter(props: YwFilterProps): JSX.Element; declare namespace YwFilter { var useCache: (key: any, props?: { type: string; }) => { message: string; setMessage: (value: string | import("ahooks/lib/createUseStorageState").IFuncUpdater) => void; }; var defaultProps: { maxRows: number; minColumns: number; itemWidth: number; columnGap: number; items: any[]; hasSearchBtn: boolean; initialValues: {}; detailedText: boolean; children: any; cache: {}; labelInset: boolean; onSubmit: () => void; useKeyPress: boolean; onCreate: () => void; onValueChange: () => void; }; } export default YwFilter;