import type { DeleteGuestToken } from './types/index.js'; /** * Deletes a guest user token. * * @param id - The guest user 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 deleteGuestToken: DeleteGuestToken; export default deleteGuestToken;