import { SvelteComponentTyped } from "svelte"; import type { SvelteHTMLElements } from "svelte/elements"; type $RestProps = SvelteHTMLElements["div"]; type $Props = { /** * Specify the size of the search input. * @default "xl" */ size?: "xs" | "sm" | "lg" | "xl"; /** * Set to `true` to hide the label text * @default false */ hideLabel?: boolean; [key: `data-${string}`]: unknown; }; export type SearchSkeletonProps = Omit<$RestProps, keyof $Props> & $Props; export default class SearchSkeleton extends SvelteComponentTyped< SearchSkeletonProps, { click: WindowEventMap["click"]; mouseenter: WindowEventMap["mouseenter"]; mouseleave: WindowEventMap["mouseleave"]; mouseover: WindowEventMap["mouseover"]; }, Record > {}