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