import React from "react";
export declare function ConfirmationStep({ label, gameId, gameDir, onComplete, }: {
label: (gameTitle: string, gameDir: string) => string;
gameId: number | null;
gameDir: string;
onComplete: (confirmed: boolean, gameDir: string) => void;
}): React.JSX.Element;