import { type ComponentType, type ReactElement, type ReactNode, type RefAttributes } from 'react'; import type { GridDefaultItem } from './generated/Grid.js'; import { GridTreeColumnElement, type GridTreeColumnProps as _GridTreeColumnProps } from './generated/GridTreeColumn.js'; import type { GridEdgeReactRendererProps } from './renderers/grid.js'; import type { OmittedGridColumnHTMLAttributes } from './GridColumn.js'; export * from './generated/GridTreeColumn.js'; export type GridTreeColumnProps = Partial, 'children' | 'footerRenderer' | 'header' | 'headerRenderer' | 'renderer' | keyof OmittedGridColumnHTMLAttributes>> & Readonly<{ footer?: ReactNode; /** * @deprecated Use `footer` instead. */ footerRenderer?: ComponentType> | null; header?: ReactNode; /** * @deprecated Use `header` instead. */ headerRenderer?: ComponentType> | null; }>; declare const ForwardedGridTreeColumn: (props: GridTreeColumnProps & RefAttributes>) => ReactElement | null; export { ForwardedGridTreeColumn as GridTreeColumn }; //# sourceMappingURL=GridTreeColumn.d.ts.map