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