import { PropType, ExtractPropTypes } from 'vue'; type AnyRecordOrArray = Array | Record; export declare const useTrackByProps: { trackBy: { type: PropType string | number)>; default: string; }; }; export declare const useTrackBy: (props: ExtractPropTypes) => { getKey: (item: AnyRecordOrArray, index: number, defaultValue?: any) => any; }; export {};