interface CellExpanderFormatterProps { tabIndex: number | undefined; expanded: boolean; onCellExpand: () => void; className: string; } export declare function CellExpandFormatter({ tabIndex, expanded, onCellExpand, className, }: CellExpanderFormatterProps): import("react/jsx-runtime").JSX.Element; export {};