export declare function useSummary(): {
    getSummaryProperties: (propertyData: any) => {
        title: string;
        description: string;
        properties: {
            enable: {
                title: string;
                type: string;
                description: string;
                $converter: string;
                refreshPanelAfterChanged: boolean;
            };
            customRender: {
                title: string;
                type: string;
                description: string;
                $converter: string;
                refreshPanelAfterChanged: boolean;
                visible: boolean;
                editor: {
                    type: string;
                    language: string;
                };
            };
        };
    };
};
