import { Ref, ComponentInternalInstance } from 'vue'; export declare type ICurrentStatus = 'default' | 'active'; export interface IItemProps { itemSlots: any; itemEmit: any; currentStatus: ICurrentStatus; list?: any[]; fieldNames?: { label: string; value: string; }; multiple?: boolean; itemValue?: any; titleValue?: any; innerItemValue?: any; name?: string; } export interface IParentInstanceProps extends ComponentInternalInstance { items: Ref; }