import { type Config, type DeleteToken } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Removes a user or client credentials token. * * @param deleteToken - Delete token client. * * @returns Thunk factory. */ declare const removeTokenFactory: (deleteToken: DeleteToken) => (tokenId: string, config?: Config) => (dispatch: Dispatch) => Promise; export default removeTokenFactory;