import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type PageStructureProps = typeof __propDef.props; export type PageStructureEvents = typeof __propDef.events; export type PageStructureSlots = typeof __propDef.slots; export default class PageStructure extends SvelteComponentTyped { } export {};