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