import { type ComponentType, type ReactElement, type ReactNode, type RefAttributes } from 'react'; import type { GridDefaultItem } from './generated/Grid.js'; import { type GridFilterColumnElement, type GridFilterColumnProps as _GridFilterColumnProps } from './generated/GridFilterColumn.js'; import type { GridBodyReactRendererProps, GridEdgeReactRendererProps } from './renderers/grid.js'; import type { OmittedGridColumnHTMLAttributes } from './GridColumn.js'; export * from './generated/GridFilterColumn.js'; export type GridFilterColumnProps = 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 ForwardedGridFilterColumn: (props: GridFilterColumnProps & RefAttributes>) => ReactElement | null; export { ForwardedGridFilterColumn as GridFilterColumn }; //# sourceMappingURL=GridFilterColumn.d.ts.map