DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
784 Bytes
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 {};