import { SvelteComponent } from "svelte"; import type { TitleProps } from "../types.js"; declare const __propDef: { props: TitleProps; events: { [evt: string]: CustomEvent; }; slots: { default: { builder: { id: string; } & { [x: `data-melt-${string}`]: ""; } & { action: import("svelte/action").Action>; }; }; }; }; export type DialogTitleProps = typeof __propDef.props; export type DialogTitleEvents = typeof __propDef.events; export type DialogTitleSlots = typeof __propDef.slots; export default class DialogTitle extends SvelteComponent { } export {};