/** @typedef {typeof __propDef.props} SubscribeProps */ /** @typedef {typeof __propDef.events} SubscribeEvents */ /** @typedef {typeof __propDef.slots} SubscribeSlots */ export default class Subscribe extends SvelteComponentTyped<{ [x: string]: any; icon: any; title: any; subTitle: any; placeholder: any; }, { [evt: string]: CustomEvent; }, {}> { } export type SubscribeProps = typeof __propDef.props; export type SubscribeEvents = typeof __propDef.events; export type SubscribeSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; icon: any; title: any; subTitle: any; placeholder: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};