/** @typedef {typeof __propDef.props} BodyProps */ /** @typedef {typeof __propDef.events} BodyEvents */ /** @typedef {typeof __propDef.slots} BodySlots */ export default class Body extends SvelteComponentTyped<{ class?: string; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type BodyProps = typeof __propDef.props; export type BodyEvents = typeof __propDef.events; export type BodySlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};