import { ImportConfig } from './MainElement'; import ImportRecord from './ImportRecord'; export declare const ReviewElementHtml: (headers: { [key: string]: string; }, errorsDropdown: string, config: ImportConfig) => string; export declare const ReviewErrorsDropdown: (options: { [key: string]: number; }, selectedOption?: string) => string; export declare const FindReplaceModal: (headers: { [key: string]: string; }) => string; export declare const FindReplaceColumnsDropdown: (name: string, options: string[] | { [key: string]: string; }, selectedOption?: string) => string; export declare const TableHeaderCell: (name: string) => string; export declare const TableDataCell: (editorMode: "advanced" | "basic", name: string, value: string, messages: string[]) => string; export declare const TableDataCellTypeAhead: (editorMode: "advanced" | "basic", index: string, name: string, value: string, label: string, providerName: string, messages: string[]) => string; export declare const TableDataCellTypeAheadOptions: (options: { [key: string]: string; }[], selectedOption: string, autoSelectedOption: string, search: string) => string; export declare const AiTransformModal: (headers: { [key: string]: string; }) => string; export declare const AiTransformModalRow: (headers: string[], original: ImportRecord, transformed: ImportRecord) => string; export declare const Buttons: () => string;