import * as React from "react";
import { PropertyGridViewModel } from "survey-creator-core";
import { Base } from "survey-core";
import { SurveyElementBase } from "survey-react-ui";
interface IPropertyGridComponentProps {
    model: PropertyGridViewModel;
}
export declare class PropertyGridComponent extends SurveyElementBase<IPropertyGridComponentProps, any> {
    get model(): PropertyGridViewModel;
    protected getStateElement(): Base;
    canRender(): boolean;
    renderElement(): React.JSX.Element;
}
export default PropertyGridComponent;
