import React from 'react'; import { Allocation, SerializedComponent, AllocationsError } from '../../machines'; export type ComponentsAllocationEditProps = { components: SerializedComponent[]; errors?: AllocationsError[]; onUpdateAllocation: (allocation: Allocation) => void; }; declare const ComponentsAllocationEdit: { ({ components, errors, onUpdateAllocation, }: ComponentsAllocationEditProps): React.JSX.Element; LoadingSkeleton: () => React.JSX.Element; }; export default ComponentsAllocationEdit;