import * as React from "react"; import type { BaseSchema } from "yup"; import type { NoteConfig } from "../Feedback"; interface RowData { input?: { key?: string; type?: string; validation?: BaseSchema; warning?: NoteConfig; }; textFieldLabels?: { disabledField: string; updatedField: string; }; name: string; value: unknown; disabledFieldTooltip?: string; } export interface MetadataTableProps { data: RowData[]; onUpdate?: (id: string, value: unknown) => void; maxHeight?: string; } export declare const MetadataTable: React.FC; export default MetadataTable; //# sourceMappingURL=metadata-table.d.ts.map