type SelectSheetProps = { sheetNames: string[]; onContinue: (sheetName: string) => Promise; onBack?: () => void; onCancel: () => void; }; /** * SelectSheetStep: Paso para seleccionar la hoja del archivo Excel. * Se muestra cuando el archivo tiene mĂșltiples hojas. */ export declare const SelectSheetStep: ({ sheetNames, onContinue, onBack, onCancel }: SelectSheetProps) => import("react/jsx-runtime").JSX.Element; export {};