import { SvelteComponent } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type HasBeenTabbedProps = typeof __propDef.props; export type HasBeenTabbedEvents = typeof __propDef.events; export type HasBeenTabbedSlots = typeof __propDef.slots; export default class HasBeenTabbed extends SvelteComponent { } export {};