/** * @ignore */ export declare const accessTokenAvailable: import("@reduxjs/toolkit").ActionCreatorWithPayload<{ token: string; expiration?: string | null | undefined; }, "@@petrus/ACCESS_TOKEN_AVAILABLE">; /** * @ignore */ export declare const accessTokenUnavailable: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"@@petrus/ACCESS_TOKEN_UNAVAILABLE">; /** * When the access token becomes available, this action is dispatched (on LOGIN_SUCCESS and REFRESH_TOKENS_SUCCESS). * @category Redux Action Type */ export declare const ACCESS_TOKEN_AVAILABLE: "@@petrus/ACCESS_TOKEN_AVAILABLE"; /** * Access token becomes unavailable on logout or when tokens refreshment start. * It's guaranteed that the `ACCESS_TOKEN_UNAVAILABLE` action will be dispatched only once after `ACCESS_TOKEN_AVAILABLE`. * @category Redux Action Type */ export declare const ACCESS_TOKEN_UNAVAILABLE: "@@petrus/ACCESS_TOKEN_UNAVAILABLE";