import { SvelteComponentTyped } from "svelte"; import '@kitbook/mdsvex-shiki-twoslash/shiki-twoslash.css'; import '../styles/main.css'; import type { GroupedPageMap, KitbookSettings } from '../kitbook-types'; declare const __propDef: { props: { settings: KitbookSettings; pathname: string; pages: GroupedPageMap; }; events: { [evt: string]: CustomEvent; }; slots: { title: {}; footer: {}; default: { activeLanguages: { name: any; code: any; }[]; }; }; }; export type LayoutProps = typeof __propDef.props; export type LayoutEvents = typeof __propDef.events; export type LayoutSlots = typeof __propDef.slots; export default class Layout extends SvelteComponentTyped { } export {};