import { InputPropsDynamic } from '../handler/index.js';
export type InputManagerProps = {
    inputs?: InputPropsDynamic<any>[][];
    gridColumns?: number;
    inputPath?: string;
    onDeleteItem?: (item: any) => void;
};
