import type { DeleteToken } from './types/index.js'; /** * Deletes a token. * * @param id - The token id. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const deleteToken: DeleteToken; export default deleteToken;