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