import { type CSSProperties } from "vue"; export type ItemProps = (payload: { item: T; index: number; }) => { [key: string]: any; style?: CSSProperties; class?: string; } | undefined;