export interface TableExpandCellProps { canExpand?: boolean; className?: string; expanded: boolean; fixed?: boolean; fixedOffset?: number; isHeader?: boolean; onClick?: VoidFunction; showShadow?: boolean; /** Explicit width for dragging state */ width?: number; } export declare const TableExpandCell: import("react").NamedExoticComponent>;