/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { BillingManifestLineItemKind } from './billingManifestLineItemKind.js';
import { LineItemTransactionType } from './lineItemTransactionType.js';
export interface BillingManifestItem {
    /** A handle for the line item transaction type */
    transactionType?: LineItemTransactionType;
    /** A handle for the billing manifest line item kind */
    kind?: BillingManifestLineItemKind;
    amountInCents?: bigint;
    memo?: string;
    discountAmountInCents?: bigint;
    taxableAmountInCents?: bigint;
    componentId?: number;
    componentHandle?: string;
    componentName?: string;
    productId?: number;
    productHandle?: string;
    productName?: string;
    periodRangeStart?: string;
    periodRangeEnd?: string;
    [key: string]: unknown;
}
export declare const billingManifestItemSchema: Schema<BillingManifestItem>;
//# sourceMappingURL=billingManifestItem.d.ts.map