import { SvelteComponentTyped } from "svelte"; import type { LayoutLoadResult } from '../layout/layoutLoad'; import type { SandboxPageLoadResult } from './sandboxPageLoad'; declare const __propDef: { props: { data: SandboxPageLoadResult & LayoutLoadResult; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type SandboxPageProps = typeof __propDef.props; export type SandboxPageEvents = typeof __propDef.events; export type SandboxPageSlots = typeof __propDef.slots; export default class SandboxPage extends SvelteComponentTyped { } export {};