import { PropertyChangeObject } from '../../../property-panel';
export declare function useSelection(): {
    getSelection: (propertyData: any) => {
        title: string;
        $converter: string;
        parentPropertyID: string;
        properties: {
            multiSelect: {
                title: string;
                type: string;
                refreshPanelAfterChanged: boolean;
            };
            showCheckbox: {
                visible: boolean;
                $converter: string;
                title: string;
                type: string;
                readonly: boolean;
                refreshPanelAfterChanged: boolean;
            };
            showSelectAll: {
                visible: boolean;
                title: string;
                type: string;
            };
        };
        setPropertyRelates(changeObject: PropertyChangeObject, data: any): void;
    };
};
