import React, { ReactElement, ReactText } from 'react'; import { TappableProps } from '../../components/Tappable/Tappable'; export declare type CellChangeFunc = (name: string, checked: boolean) => void; export declare type CellProps = TappableProps & { checked?: boolean; name?: string; onChange?: CellChangeFunc; expandable?: boolean; before?: ReactElement; after?: ReactElement; indicator?: ReactText; }; export declare const Cell: React.FC;