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