import { SvelteComponentTyped } from "svelte"; export type SubTitleProps = { props?: { class: string; }; content: string; }; declare const __propDef: { props: { title: string; subTitles: SubTitleProps[]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type SectionTitleProps = typeof __propDef.props; export type SectionTitleEvents = typeof __propDef.events; export type SectionTitleSlots = typeof __propDef.slots; export default class SectionTitle extends SvelteComponentTyped { } export {};