export declare function useRowOption(): {
    getRowOptionProperties: (propertyData: any) => {
        title: string;
        description: string;
        properties: {
            customRowStyle: {
                title: string;
                type: string;
                description: string;
                $converter: string;
                editor: {
                    type: string;
                    language: string;
                    leftTemplate: () => any;
                };
            };
            customCellStyle: {
                title: string;
                type: string;
                description: string;
                $converter: string;
                editor: {
                    type: string;
                    language: string;
                    leftTemplate: () => any;
                };
            };
        };
    };
};
