import React, { PropsWithChildren } from 'react'; import { FinFormItemContextProps } from '../context/FinFormItemContext'; export interface SearchItemProps extends PropsWithChildren<{}> { style: React.CSSProperties; /** * 控制该项是否显示-默认显示 */ visible: boolean; className?: string; hiddenLable?: boolean; formItemLayout?: Partial; } /** * 搜索功能 - 搜索项 */ export declare const SearchItem: (props: Partial) => JSX.Element; export default SearchItem;