subhasmitalmg-react-spreadsheet-import
Version:
React spreadsheet import for xlsx and csv files with column matching and validation steps
11 lines (10 loc) • 432 B
TypeScript
import type { Column } from "../MatchColumnsStep";
import type { RawData } from "../../../types";
type UserTableColumnProps<T extends string> = {
column: Column<T>;
entries: RawData;
onIgnore: (index: number) => void;
onRevertIgnore: (index: number) => void;
};
export declare const UserTableColumn: <T extends string>(props: UserTableColumnProps<T>) => import("react/jsx-runtime").JSX.Element;
export {};