import { SvelteComponentTyped } from "svelte"; export declare const LAYOUT_CONTEXT_ID = "layout-context-id"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type LayoutProps = typeof __propDef.props; export declare type LayoutEvents = typeof __propDef.events; export declare type LayoutSlots = typeof __propDef.slots; export default class Layout extends SvelteComponentTyped { } export {};