import { ViewProps } from "@tarojs/components/types/View"; import { ReactNode } from "react"; interface SearchActionProps extends ViewProps { children?: ReactNode; } declare function SearchAction(props: SearchActionProps): JSX.Element; export default SearchAction;