import { type GlobusAuthState } from "./State"; export type Action = { type: "AUTHENTICATED"; payload: boolean; } | { type: "REVOKE"; } | { type: "BOOTSTRAPPED"; }; export declare const reducer: (state: GlobusAuthState, action: Action) => GlobusAuthState; //# sourceMappingURL=reducer.d.ts.map