import type { PostGuestUser } from './types/index.js'; /** * Registers a new guest user. * * @param data - User to be registered. * @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 postGuestUser: PostGuestUser; export default postGuestUser;