import React from "react"; declare type IProps = { x: number; y: number; hasError: boolean; children: React.ReactNode; numHeaders: number; isSelectable: boolean; isReadonly: boolean; borderRightColor?: string; }; /** * Sticky cells are stuck to the left edge of the table even when scrolling. * We need to manually track the widths of the sticky cells to make sure they * stack beside each other properly, since the cells can grow horizontally if * there aren't many columns. */ export declare const StickyCell: ({ x, y, hasError, numHeaders, children, isSelectable, isReadonly, borderRightColor, }: IProps) => JSX.Element; export {};