import { FieldType, FieldValue, OptionValue } from './types';
export interface InspectorFieldProps {
    label: string;
    type: FieldType;
    value?: FieldValue;
    onChange?: (value: FieldValue) => void;
    onClick?: () => void;
    min?: number;
    max?: number;
    step?: number;
    options?: OptionValue[];
    block?: boolean;
    disabled?: boolean;
}
export declare const InspectorField: import('react').NamedExoticComponent<InspectorFieldProps>;
