import { Price } from '../../order/Price';
/** Fee detail */
export interface Detail {
    /** The plan id */
    id: string;
    /** The plan size (ex: number of instances) */
    size: number;
    /** Total price of the plan, computed from size and unit price */
    totalPrice: Price;
    /** Unit price of the plan */
    unitPrice: Price;
}
//# sourceMappingURL=Detail.d.ts.map