import type { SceneCollection } from "../scene/types.js";
export interface DialogueSceneProps {
    sceneName?: string;
    speaker?: string;
    scenes: SceneCollection;
    className?: string;
    actorTransitionDuration?: number;
}
/**
 * Visual scene component that displays background and actor images
 */
export declare function DialogueScene({ sceneName, speaker, scenes, className, actorTransitionDuration, }: DialogueSceneProps): import("react/jsx-runtime").JSX.Element;
