export declare function useRowNumber(): {
    getRowNumber: (propertyData: any) => {
        title: string;
        $converter: string;
        parentPropertyID: string;
        properties: {
            enable: {
                title: string;
                type: string;
                refreshPanelAfterChanged: boolean;
            };
            width: {
                visible: boolean;
                title: string;
                type: string;
            };
            heading: {
                visible: boolean;
                title: string;
                type: string;
            };
        };
    };
};
