import type { dh as DhType } from '@deephaven/jsapi-types'; import { type BaseFormatConfig, type ChangeCallback, type ModelColumn } from './ConditionalFormattingUtils'; export interface RowFormatEditorProps { columns: ModelColumn[]; config?: BaseFormatConfig; dh: typeof DhType; onChange?: ChangeCallback; } declare function RowFormatEditor(props: RowFormatEditorProps): JSX.Element; export default RowFormatEditor; //# sourceMappingURL=RowFormatEditor.d.ts.map