import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { contextKey?: any; contextRoot?: unknown; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ContextRooterProps = typeof __propDef.props; export type ContextRooterEvents = typeof __propDef.events; export type ContextRooterSlots = typeof __propDef.slots; export default class ContextRooter extends SvelteComponentTyped { get contextRoot(): {}; get contextKey(): any; /**accessor*/ set contextKey(_: any); } export {};