interface TokenCreateOptions { context?: string; org?: string; name?: string; description?: string; scope?: string; expiresInDays?: number; raw?: boolean; json?: boolean; } export declare function tokenCommand(options: { context?: string; raw?: boolean; }): Promise; export declare function tokenCreateCommand(options: TokenCreateOptions): Promise; /** * Revoke a token by its `jti`. Inserts a row into `public.revoked_tokens` * (created on demand) — the gateway's RevokedTokenStore checks this on every * worker-token / settings-cookie verification, so the token is dead within * one cache TTL (≤60s). */ export declare function tokenRevokeCommand(jti: string, options: { expiresAt?: string; }): Promise; export {}; //# sourceMappingURL=token.d.ts.map