import { PublicAuthPromptProps } from './components/PublicAuthPrompt.vue'; export type GuestUserPromptOptions = PublicAuthPromptProps; /** * Show the public auth prompt dialog * This is used to ask the current user their nickname * as well as show some additional contextual information * * @param props - The props to pass to the dialog * @return The selected name or undefined if dialog was closed */ export declare function showGuestUserPrompt(props: GuestUserPromptOptions): Promise;