import { ArgTypes } from './ControlsPanel';
interface FormProps {
    args: ArgTypes;
    isPristine: boolean;
    onFieldChange: (value: any) => void;
    onReset: () => void;
}
declare const PropForm: ({ args, isPristine, onFieldChange, onReset }: FormProps) => import("react/jsx-runtime").JSX.Element;
export default PropForm;
