import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { icon?: string | undefined; count?: number | undefined; toggle?: boolean | undefined; }; events: { toggle: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: { toggle: boolean; }; }; }; export type NotificationsIconProps = typeof __propDef.props; export type NotificationsIconEvents = typeof __propDef.events; export type NotificationsIconSlots = typeof __propDef.slots; export default class NotificationsIcon extends SvelteComponentTyped { } export {};