import React from 'react'; import { AllocationsPreview, SerializedComponent } from '../../machines'; export type ComponentsAllocationPreviewProps = { allocationsPreview: AllocationsPreview; components: SerializedComponent[]; }; declare const ComponentsAllocationPreview: ({ allocationsPreview, components, }: ComponentsAllocationPreviewProps) => React.JSX.Element; export default ComponentsAllocationPreview;