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