import { SvelteComponent } from "svelte"; | |
import type { TitleProps } from "../types.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 {}; | |