import { FC } from 'react';
import { StyleProp, ViewStyle } from 'react-native';
import { ColumnProps } from './type';
interface CellProps {
    data: {
        [key: string]: string;
    };
    column: ColumnProps;
    style?: StyleProp<ViewStyle>;
}
export declare const Cell: FC<CellProps>;
export {};
//# sourceMappingURL=Cell.d.ts.map