import React from 'react';
import { TableCellProps } from './types';
export default function Cell({ children, as, ...otherProps }: TableCellProps): React.JSX.Element;
