import React from "react"; export interface GridOptions { columnResizing: boolean; columnHover: boolean; floatingFilters: boolean; pagination: boolean; rowDrag: boolean; rowNumbers: boolean; rowSelection: boolean; } export declare const defaultGridOptions: GridOptions; interface GridFeaturesProps { options: GridOptions; onChange: (options: GridOptions) => void; } export declare function GridFeatures({ options, onChange }: GridFeaturesProps): React.JSX.Element; export {};