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