import { SvelteComponent } from "svelte"; declare const __propDef: { props: { title?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type TitleSectionProps = typeof __propDef.props; export type TitleSectionEvents = typeof __propDef.events; export type TitleSectionSlots = typeof __propDef.slots; export default class TitleSection extends SvelteComponent { } export {};