import type { Meta } from "./types"; import type { Data } from "../../types"; type Props = { initialData: (Data & Meta)[]; file: File; onBack?: () => void; onCancel: () => void; }; export declare const ValidationStep: ({ initialData, file, onBack, onCancel }: Props) => import("react/jsx-runtime").JSX.Element; export {};