UNPKG

bits-ui

Version:

The headless components for Svelte.

37 lines (36 loc) 1.18 kB
import { SvelteComponent } from "svelte"; import type { InputProps } from "../index.js"; declare const __propDef: { props: InputProps; events: { [evt: string]: CustomEvent<any>; }; slots: { default: { builder: { name: string | undefined; value: string; 'aria-hidden': "true"; hidden: boolean; disabled: boolean; required: boolean; tabIndex: number; style: string; } & { [x: `data-melt-${string}`]: ""; } & { action: (node: HTMLInputElement) => { destroy: import("svelte/store").Unsubscriber; }; }; }; }; exports?: {} | undefined; bindings?: string | undefined; }; export type RadioGroupInputProps = typeof __propDef.props; export type RadioGroupInputEvents = typeof __propDef.events; export type RadioGroupInputSlots = typeof __propDef.slots; export default class RadioGroupInput extends SvelteComponent<RadioGroupInputProps, RadioGroupInputEvents, RadioGroupInputSlots> { } export {};