/** * Indicates where to render a custom field on the Square-hosted invoice page and in emailed or PDF * copies of the invoice. */ export declare const InvoiceCustomFieldPlacement: { readonly AboveLineItems: "ABOVE_LINE_ITEMS"; readonly BelowLineItems: "BELOW_LINE_ITEMS"; }; export type InvoiceCustomFieldPlacement = (typeof InvoiceCustomFieldPlacement)[keyof typeof InvoiceCustomFieldPlacement];