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