import type { GetGuestUser } from './types/index.js'; /** * Gets the guest user details with the specified id. * * @param guestUserId - Universal identifier of the user. * @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 getGuestUser: GetGuestUser; export default getGuestUser;