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