export declare function usePagination(): {
    getPagination: (propertyData: any, readonly: boolean) => {
        title: string;
        $converter: string;
        parentPropertyID: string;
        properties: {
            enable: {
                title: string;
                type: string;
                refreshPanelAfterChanged: boolean;
                editor: {
                    readonly: boolean;
                };
            };
            showIndex: {
                visible: any;
                title: string;
                type: string;
            };
            showLimits: {
                visible: any;
                title: string;
                type: string;
            };
        };
    };
};
