import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; meetLink?: string; textSmall?: string; title: string; }; events: { click: MouseEvent; close: CustomEvent; meetLink: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type MeetingInfoProps = typeof __propDef.props; export declare type MeetingInfoEvents = typeof __propDef.events; export declare type MeetingInfoSlots = typeof __propDef.slots; export default class MeetingInfo extends SvelteComponentTyped { } export {};