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