import React from "react";
import { Price } from "../types/contrib";
export interface PriceRowProps {
    price: Price;
    isEditing: boolean;
    isDisabled: boolean;
    onChangeAmount: (amount: string) => void;
    onChangeArticleCode?: (amount: string) => void;
    onDelete: () => void;
}
export declare const PriceRow: React.FC<PriceRowProps>;
