/** * Local notification CLI commands. * * These commands intentionally reopen the `Notifier` sidecar for one bounded * operation and close both sidecar and `Habery` afterward. They are operator * inspection/mutation tools, not protocol delegation approval commands. */ import { type Operation } from "effection"; /** Print verified local controller notices as JSON for operator inspection. */ export declare function notificationsListCommand(args: Record): Operation; /** Mark one verified notice as read and persist its new detached signature. */ export declare function notificationsMarkReadCommand(args: Record): Operation; /** Remove one verified notice from the notification sidecar. */ export declare function notificationsRemoveCommand(args: Record): Operation; //# sourceMappingURL=notifications.d.ts.map