import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type AboutPageProps = typeof __propDef.props; export type AboutPageEvents = typeof __propDef.events; export type AboutPageSlots = typeof __propDef.slots; export default class AboutPage extends SvelteComponentTyped { } export {};