UNPKG

@boxyhq/svelte-ui

Version:

Svelte UI components from BoxyHQ

22 lines (21 loc) 621 B
import { SvelteComponentTyped } from "svelte"; import { ModalProps } from "../types"; declare const __propDef: { props: { visible: ModalProps["visible"]; title: ModalProps["title"]; description?: ModalProps["description"]; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; 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 {};