import type { ShellActivityEvent } from './types.js'; interface Props { max?: number; /** * Which lifecycle events raise a toast. Defaults to lifecycle-only: * a newly-created activity ("started") or a status transition * (completed / failed / canceled). Progress-only updates keep the same * status and carry a `previous` snapshot, so they never toast — otherwise * a running job spawns one toast per progress tick. */ notify?: (event: ShellActivityEvent) => boolean; } declare const ActivityToasts: import("svelte").Component; type ActivityToasts = ReturnType; export default ActivityToasts; //# sourceMappingURL=ActivityToasts.svelte.d.ts.map