UNPKG

bits-ui

Version:

The headless components for Svelte.

23 lines (22 loc) 798 B
import { SvelteComponent } from "svelte"; import type { ItemIndicatorProps } from "../index.js"; declare const __propDef: { props: ItemIndicatorProps; events: { [evt: string]: CustomEvent<any>; }; slots: { default: { checked: boolean; attrs: Record<string, string> | undefined; }; }; exports?: {} | undefined; bindings?: string | undefined; }; export type RadioGroupItemIndicatorProps = typeof __propDef.props; export type RadioGroupItemIndicatorEvents = typeof __propDef.events; export type RadioGroupItemIndicatorSlots = typeof __propDef.slots; export default class RadioGroupItemIndicator extends SvelteComponent<RadioGroupItemIndicatorProps, RadioGroupItemIndicatorEvents, RadioGroupItemIndicatorSlots> { } export {};