import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; title: string; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type MeetLinkProps = typeof __propDef.props; export declare type MeetLinkEvents = typeof __propDef.events; export declare type MeetLinkSlots = typeof __propDef.slots; export default class MeetLink extends SvelteComponentTyped { } export {};