import React from 'react'; import { type Control } from '@teambit/compositions.ui.composition-live-controls'; export declare function LiveControls({ defs, values, onChange, renderLabel, }: { defs: Array; values: Record; onChange: (key: string, value: any) => void; renderLabel?: (field: Control) => React.ReactNode; }): React.JSX.Element;