import { Amount } from "./types"; export interface InvoiceLineInput { unitAmount: Amount; category: InvoiceLineCategory; description: string; externalId: string; taxReportable: boolean; forceUsTaxActivity: boolean; tags: string[]; } export declare enum InvoiceLineCategory { 'services' = "services", 'rent' = "rent", 'royalties' = "royalties", 'royalties_film' = "royalties_film", 'prizes' = "prizes", 'education' = "education", 'refunds' = "refunds" } export declare class InvoiceLine { id: string; status: string; description: string; quantity: number; externalId: string; taxReportable: boolean; tags: string[]; category: string; forceUsTaxActivity: boolean; unitAmount: Amount; discountAmount: Amount; taxAmount: Amount; totalAmount: Amount; dueAmount: Amount; paidAmount: Amount; }