import { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";

type $RestProps = SvelteHTMLElements["div"];

type $Props = {
  [key: `data-${string}`]: unknown;
};

export type FluidMultiSelectSkeletonProps = Omit<$RestProps, keyof $Props> & $Props;

export default class FluidMultiSelectSkeleton extends SvelteComponentTyped<
  FluidMultiSelectSkeletonProps,
  {
    click: WindowEventMap["click"];
    mouseenter: WindowEventMap["mouseenter"];
    mouseleave: WindowEventMap["mouseleave"];
    mouseover: WindowEventMap["mouseover"];
  },
  Record<string, never>
> {}
