Graduation
/
ui
/node_modules
/bits-ui
/dist
/bits
/dialog
/components
/dialog-description.svelte.d.ts
import { SvelteComponent } from "svelte"; | |
import type { DescriptionProps } from "../types.js"; | |
declare const __propDef: { | |
props: DescriptionProps; | |
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 DialogDescriptionProps = typeof __propDef.props; | |
export type DialogDescriptionEvents = typeof __propDef.events; | |
export type DialogDescriptionSlots = typeof __propDef.slots; | |
export default class DialogDescription extends SvelteComponent<DialogDescriptionProps, DialogDescriptionEvents, DialogDescriptionSlots> { | |
} | |
export {}; | |