import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title?: any; subTitle?: any; price?: any; month?: any; day?: any; }; events: { [evt: string]: CustomEvent; }; slots: { title: {}; subTitle: {}; price: {}; default: {}; }; }; export declare type TitleSubtTitleGroupProps = typeof __propDef.props; export declare type TitleSubtTitleGroupEvents = typeof __propDef.events; export declare type TitleSubtTitleGroupSlots = typeof __propDef.slots; export default class TitleSubtTitleGroup extends SvelteComponentTyped { } export {};