import { Allocation, SerializedComponent, AllocationsError } from '../../../machines'; import { ComponentPreview } from '../types'; type ComponentsRow = { onOff: ComponentPreview[]; quantity: ComponentPreview[]; }; type ComponentsPreviewRow = { recurring: ComponentsRow; oneTime: Pick; }; export declare const createComponentsPreviewRow: (components: SerializedComponent[], onUpdateAllocation: (allocation: Allocation) => void, locale: string, errors?: AllocationsError[]) => ComponentsPreviewRow; export {};