import React from 'react';
import { Field } from '@grafana/data';
export interface Props {
showMinMax: boolean;
value: Partial<Field>;
onChange: (value: Partial<Field>, event?: React.SyntheticEvent<HTMLElement>) => void;
}
export declare const FieldPropertiesEditor: React.FC<Props>;