import type { Command } from 'commander'; import type { TwistTokenStore } from '../../lib/auth-provider.js'; /** * Attach `tw auth logout` via cli-core's generic `attachLogoutCommand`. The * registrar emits the success line (`✓ Logged out` / `{ok:true}` / silent * ndjson); `onCleared` only surfaces the keyring-fallback warning carried by * `TokenStorageResult` — cli-core's `TokenStore.clear: void` contract can't * expose it directly, so we stash it on the adapter (`getLastClearResult`). */ export declare function attachTwistLogoutCommand(auth: Command, store: TwistTokenStore): Command; //# sourceMappingURL=logout.d.ts.map