import { default as React } from 'react'; export interface ColInfoTableProps { data: Array<{ id: string; label: string | React.ReactNode; value: string; onChange: (value: string) => void; placeholder?: string; multiline?: boolean; rows?: number; }>; disabled?: boolean; borderColor?: string; headerBackgroundColor?: string; headerTextColor?: string; } declare const ColInfoTable: ({ data, disabled, borderColor, headerBackgroundColor, headerTextColor, }: ColInfoTableProps) => JSX.Element; export default ColInfoTable;