import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type BootStrAppProps = typeof __propDef.props; export type BootStrAppEvents = typeof __propDef.events; export type BootStrAppSlots = typeof __propDef.slots; export default class BootStrApp extends SvelteComponentTyped { } export {};