export declare class SupplyBatchesControl { private element; value: Array<{ name: string; quantity: number; }>; showDialog: boolean; name: string; constructor(element: Element); bind(): void; valueChanged(newValue: any): void; addSupplyBatch(event: any): void; removeSupplyBatch(name: string): void; blur(): void; }