import { SvelteComponentTyped } from "svelte"; import type { GroupDef } from '../ddl/groups'; export declare const group: GroupDef; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; 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 {};