/** @typedef {typeof __propDef.props} SouthEastProps */ /** @typedef {typeof __propDef.events} SouthEastEvents */ /** @typedef {typeof __propDef.slots} SouthEastSlots */ export default class SouthEast extends SvelteComponent<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, {}> { } export type SouthEastProps = typeof __propDef.props; export type SouthEastEvents = typeof __propDef.events; export type SouthEastSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};