import { Resource } from "i18next";
import { HTMLAttributes } from "react";
type ModalParams = {
isModal?: boolean;
modalIsOpen?: boolean;
modalOnCloseTriggered?: () => void;
modalCloseOnOutsideClick?: boolean;
};
export type CSVImporterProps = (HTMLAttributes & HTMLAttributes) & {
template?: Record | string;
darkMode?: boolean;
primaryColor?: string;
className?: string;
onComplete?: (data: any) => void;
waitOnComplete?: boolean;
customStyles?: Record | string;
showDownloadTemplateButton?: boolean;
skipHeaderRowSelection?: boolean;
language?: string;
customTranslations?: Resource;
} & ModalParams;
export {};