import { BilableAmountType } from '@nx-ws/bhn-enums/bilable-amount-type.enum'; import { TierDto } from './tier.dto'; export declare class RateDto { id: string; sequence: number; name: string; payload: string; basisType: BilableAmountType; basis: string; optimize: string; tiers: TierDto[]; transactionSpecId: string; constructor(d?: RateDto | null); }