import { StateInitialSlice } from '../index.types'; import { ActionCreatorWithoutPayload, ActionCreatorWithPayload } from '@reduxjs/toolkit'; export declare type AuthInitialState = { id: string; authorized: string; authenticated: string; refreshToken: string; } & StateInitialSlice; export declare type CreateSliceAuthProperties = {} & StateInitialSlice; export declare type UpdateCredentialsArgs = { accessToken: string; refreshToken: string; role: string; id: string; appName?: string; }; export declare type UpdateCredentials = ActionCreatorWithPayload | ActionCreatorWithoutPayload;