/** * askpass's side of the inter-extension bridge: exposes captured secrets * so shroud can pull them on rescan (covers anything captured before * shroud loaded). Pushing is done via notifyShroud from @uiyzzi/pi-secret-kit. */ import type { AskpassState } from "./state.js"; export declare const ASKPASS_SYMBOL: unique symbol; /** Expose captured secrets so shroud can pull them on rescan. */ export declare function registerBridge(st: AskpassState): void;