import type { ConfirmPrompt, InitScreen, PromptRequest, SelectPrompt, TextPrompt } from '../runtime';
export declare function InitHeader(): import("react/jsx-runtime").JSX.Element;
export declare function ScreenIntro({ screen }: Readonly<{
    screen: InitScreen;
}>): import("react/jsx-runtime").JSX.Element;
export declare function ProgressSection({ screen }: Readonly<{
    screen: InitScreen;
}>): import("react/jsx-runtime").JSX.Element | null;
export declare function CurrentStepSection({ screen }: Readonly<{
    screen: InitScreen;
}>): import("react/jsx-runtime").JSX.Element | null;
export declare function ConfirmPromptView({ prompt }: Readonly<{
    prompt: ConfirmPrompt;
}>): import("react/jsx-runtime").JSX.Element;
export declare function TextPromptView({ prompt, onError }: Readonly<{
    prompt: TextPrompt;
    onError: (error?: string) => void;
}>): import("react/jsx-runtime").JSX.Element;
export declare function SelectPromptView({ prompt }: Readonly<{
    prompt: SelectPrompt;
}>): import("react/jsx-runtime").JSX.Element;
export declare function PromptArea({ prompt, onTextError }: Readonly<{
    prompt?: PromptRequest;
    onTextError: (error?: string) => void;
}>): import("react/jsx-runtime").JSX.Element | null;
export declare function SpinnerArea({ text }: Readonly<{
    text?: string;
}>): import("react/jsx-runtime").JSX.Element | null;
