import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type EventListProps = typeof __propDef.props; export declare type EventListEvents = typeof __propDef.events; export declare type EventListSlots = typeof __propDef.slots; export default class EventList extends SvelteComponentTyped { } export {};