UNPKG

bits-ui

Version:

The headless components for Svelte.

30 lines (29 loc) 999 B
import { SvelteComponent } from "svelte"; import type { Props } from "../index.js"; declare const __propDef: { props: Props; events: { [evt: string]: CustomEvent<any>; }; slots: { default: { builder: { readonly role: "radiogroup"; readonly 'aria-required': boolean; readonly 'data-orientation': import("@melt-ui/svelte/internal/types").Orientation; } & { [x: `data-melt-${string}`]: ""; } & { action: import("svelte/action").Action<any, any, Record<never, any>>; }; }; }; exports?: {} | undefined; bindings?: string | undefined; }; export type RadioGroupProps = typeof __propDef.props; export type RadioGroupEvents = typeof __propDef.events; export type RadioGroupSlots = typeof __propDef.slots; export default class RadioGroup extends SvelteComponent<RadioGroupProps, RadioGroupEvents, RadioGroupSlots> { } export {};