UNPKG

@boxyhq/svelte-ui

Version:

Svelte UI components from BoxyHQ

20 lines (19 loc) 605 B
import { SvelteComponentTyped } from "svelte"; import type { BadgeProps } from "../types"; declare const __propDef: { props: { variant?: BadgeProps["variant"]; ariaLabel?: BadgeProps["ariaLabel"]; badgeText: BadgeProps["badgeText"]; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type IndexProps = typeof __propDef.props; export type IndexEvents = typeof __propDef.events; export type IndexSlots = typeof __propDef.slots; export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> { } export {};