import React, { PropsWithChildren } from 'react'; export interface SearchMoreButtonProps extends PropsWithChildren<{}> { onClick: (event: React.MouseEvent) => void; visible: boolean; } /** * 搜索功能 - 展示更多组件 */ export declare const SearchMoreButton: (props: SearchMoreButtonProps) => JSX.Element; export default SearchMoreButton;