import type { PropsWithChildren } from 'react';
interface CellProps {
    selected?: boolean;
    sticky?: boolean;
}
declare function Cell({ children, selected, sticky, }: PropsWithChildren<CellProps>): JSX.Element;
export default Cell;
