UNPKG

bits-ui

Version:

The headless components for Svelte.

26 lines (25 loc) 769 B
import { SvelteComponent } from "svelte"; import type { ThumbProps } from "../index.js"; declare const __propDef: { props: ThumbProps; events: { [evt: string]: CustomEvent<any>; }; slots: { default: { attrs: { "data-state": string; "data-checked": string | undefined; }; checked: boolean; }; }; exports?: {} | undefined; bindings?: string | undefined; }; export type SwitchThumbProps = typeof __propDef.props; export type SwitchThumbEvents = typeof __propDef.events; export type SwitchThumbSlots = typeof __propDef.slots; export default class SwitchThumb extends SvelteComponent<SwitchThumbProps, SwitchThumbEvents, SwitchThumbSlots> { } export {};