import { HighlightingComponentProps } from "../../common/HighlightingComponentProps"; import { FilteredType } from "../dataproviders/filterers/PropertyDataFiltererBase"; import { PropertyCategoryRendererManager } from "../PropertyCategoryRendererManager"; import { IPropertyDataProvider } from "../PropertyDataProvider"; import { CommonPropertyGridProps } from "./PropertyGridCommons"; /** Properties for [[VirtualizedPropertyGridWithDataProvider]] React component * @beta */ export interface VirtualizedPropertyGridWithDataProviderProps extends CommonPropertyGridProps { dataProvider: IPropertyDataProvider; highlight?: HighlightingComponentProps & { filteredTypes?: FilteredType[]; }; propertyCategoryRendererManager?: PropertyCategoryRendererManager; width?: number; height?: number; } /** * VirtualizedPropertyGrid React Component which takes dataProvider and * sets up default implementations for IPropertyGridModelSource nad IPropertyGridEventHandler * @beta */ export declare function VirtualizedPropertyGridWithDataProvider(props: VirtualizedPropertyGridWithDataProviderProps): JSX.Element; //# sourceMappingURL=VirtualizedPropertyGridWithDataProvider.d.ts.map