import { TouchableOpacityProps } from "react-native";
import React, { PropsWithChildren } from "react";
type Props = TouchableOpacityProps & {
    index: number;
};
declare const CellContainer: React.FC<PropsWithChildren<Props>>;
export default CellContainer;
