import { PropType } from 'vue'; import { DataTableItem } from '../types'; export declare const useCurrentPageProp: { currentPage: { type: PropType; }; }; export declare const createItemsProp: () => { items: { type: PropType; default: () => T[]; }; }; export declare const useSelectableProp: { selectable: { type: BooleanConstructor; default: boolean; }; }; export declare const useItemsTrackByProp: { itemsTrackBy: { type: PropType any)>; default: string; }; };