infinity-forge
Version:
9 lines (8 loc) • 507 B
TypeScript
import { InputProps } from '../../../../ui/index.js';
import * as Inputs from '../../../../ui/components/form/index.js';
interface InputManagerProps {
confirmDelete?: boolean;
disabledAddNewItem?: boolean;
}
export declare function InputManager({ name, label, inputs, min, gridColumns, inputPath, placeholder, onDeleteItem, confirmDelete, disabledAddNewItem, ...rest }: InputProps & Partial<Inputs.DragAndDropListProps<any>> & InputManagerProps): import("react/jsx-runtime").JSX.Element;
export {};