import { SvelteComponent } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type InlineNotificationDotProps = typeof __propDef.props; export type InlineNotificationDotEvents = typeof __propDef.events; export type InlineNotificationDotSlots = typeof __propDef.slots; export default class InlineNotificationDot extends SvelteComponent { } export {};