import React from 'react';
import type { MonitorInput } from '../../types';
declare type MonitorProps = {
    label: string;
} & Omit<MonitorInput, 'type'>;
export declare function Monitor({ label, objectOrFn, settings }: MonitorProps): React.JSX.Element;
export {};
