UNPKG

svelte-settings

Version:

> [!WARNING] > This project is a work in progress. Do not use it in any of your projects yet.

7 lines (6 loc) 352 B
import { type WithElementRef } from "../../../utils.js"; import type { HTMLAttributes } from "svelte/elements"; type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {}; declare const SelectLabel: import("svelte").Component<$$ComponentProps, {}, "ref">; type SelectLabel = ReturnType<typeof SelectLabel>; export default SelectLabel;