import { SvelteComponentTyped } from "svelte"; import type { Reaction } from './types'; declare const __propDef: { props: { id?: string | undefined; reactions?: Reaction[] | undefined; }; events: { 'reaction-add': CustomEvent; 'reaction-click': CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type ReactionProps = typeof __propDef.props; export type ReactionEvents = typeof __propDef.events; export type ReactionSlots = typeof __propDef.slots; export default class Reaction extends SvelteComponentTyped { } export {};