import { PropertyChangeObject } from '../../../property-panel';
export declare function useColumnOption(): {
    getColumnOptionProperties: (propertyData: any) => {
        title: string;
        description: string;
        properties: {
            fitMode: {
                description: string;
                title: string;
                type: string;
                $converter: string;
                refreshPanelAfterChanged: boolean;
                editor: {
                    data: {
                        id: string;
                        name: string;
                    }[];
                };
            };
        };
        setPropertyRelates(changeObject: PropertyChangeObject, data: any): void;
    };
};
