export type AuthGatewayAction = "serve" | "token" | "status"; export interface AuthGatewayCommandArgs { action: AuthGatewayAction; flags: { json?: boolean; bind?: string; regenerate?: boolean; /** * Disable bearer-token auth on inbound requests. Useful when the gateway * is bound to loopback (the default `127.0.0.1:4000`) and you don't want * to wire token-paste plumbing into every local client. */ noAuth?: boolean; }; } declare const ACTIONS: readonly AuthGatewayAction[]; export declare function runAuthGatewayCommand(cmd: AuthGatewayCommandArgs): Promise; export { ACTIONS as AUTH_GATEWAY_ACTIONS };