import React, { FunctionComponent } from 'react'; import { ITouchEvent } from '@tarojs/components'; import { CellGroup } from "../cellgroup/cellgroup"; import { CellProps } from './types'; interface CellTaroProps extends CellProps { onClick: (event: React.MouseEvent | ITouchEvent) => void; } export declare const Cell: FunctionComponent & Omit, 'title'>> & { Group: typeof CellGroup; }; export {};