UNPKG

bits-ui

Version:

The headless components for Svelte.

26 lines (25 loc) 784 B
import { SvelteComponent } from "svelte"; import type { TitleProps } from "../index.js"; declare const __propDef: { props: TitleProps; events: { [evt: string]: CustomEvent<any>; }; slots: { default: { builder: { id: string; } & { [x: `data-melt-${string}`]: ""; } & { action: import("svelte/action").Action<any, any, Record<never, any>>; }; }; }; }; export type DialogTitleProps = typeof __propDef.props; export type DialogTitleEvents = typeof __propDef.events; export type DialogTitleSlots = typeof __propDef.slots; export default class DialogTitle extends SvelteComponent<DialogTitleProps, DialogTitleEvents, DialogTitleSlots> { } export {};