import { type DndProps, type DndSlots, type DndExpose } from './common'; declare const __VLS_export: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: import("vue").PublicProps & __VLS_PrettifyLocal & { "onItem-drag-start"?: ((event: { itemIndex: number; }) => any) | undefined; "onItem-drag-move"?: ((event: { itemIndex: number; insertIndex: number; }) => any) | undefined; "onItem-drop"?: ((event: { itemIndex: number; insertIndex: number; }) => any) | undefined; "onUpdate:list"?: ((list: T[]) => any) | undefined; }> & (typeof globalThis extends { __VLS_PROPS_FALLBACK: infer P; } ? P : {}); expose: (exposed: import("vue").ShallowUnwrapRef) => void; attrs: any; slots: DndSlots; emit: ((evt: "item-drag-start", event: { itemIndex: number; }) => void) & ((evt: "item-drag-move", event: { itemIndex: number; insertIndex: number; }) => void) & ((evt: "item-drop", event: { itemIndex: number; insertIndex: number; }) => void) & ((evt: "update:list", list: T[]) => void); }>) => import("vue").VNode & { __ctx?: NonNullable>; }; declare const _default: typeof __VLS_export; export default _default; type __VLS_PrettifyLocal = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};