export default AppShell; type AppShell = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * Provide an application’s shell that makes the web app more like a native app. It also handles the * dark/light mode switching. This component has to be placed directly under `` (or * `
` in a SvelteKit app). */ declare const AppShell: import("svelte").Component<{ /** * Orientation of the app shell’s children. */ orientation?: "horizontal" | "vertical" | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; } & Record, {}, "">; type Props = { /** * Orientation of the app shell’s children. */ orientation?: "horizontal" | "vertical" | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; }; import type { Snippet } from 'svelte';