export declare const INVOICE_SECTION: Readonly<{ BANK_DETAILS: "BankDetails"; BILLED_TO: "BilledTo"; BOTTOM_ACTION: "BottomAction"; CLAIMANT: "Patient"; DOCUMENTS: "Documents"; INSTALMENT_PLAN_SCHEDULE: "InstalmentPlanSchedule"; INVOICE_OVERVIEW: "InvoiceOverview"; MESSAGES: "Messages"; NOTES: "Notes"; PATIENT: "Patient"; PAYEE_PROVIDER: "PayeeProvider"; PAYMENTS: "Payments"; PRACTICE: "Practice"; PROVIDER: "Provider"; REFERRAL: "Referral"; SERVICE_ITEMS: "ServiceItems"; SERVICE_TOTALS: "ServiceTotals"; STATEMENT: "Statement"; SETTLEMENT_BANK_DETAILS: "SettlementBankDetails"; TOP_ACTION: "TopAction"; TRANSACTION_PAYMENT_CARD_FORM: "TransactionPaymentCardForm"; TRANSACTION_REPORTS_BUTTONS: "TransactionReportsButtons"; WCQ_TRANSACTION_DETAILS_MESSAGE: "TransactionDetailsMessage"; TRANSACTION_INFORMATIONAL_MESSAGE: "TransactionInformationalMessage"; }>; /** * Returns whether the funder with the provided `funderCode` has a transaction details section * enabled. `section` must be one of the supported `INVOICE_SECTION` sections. * * Default to section support if no funder code is provided, to allow patient claims to be * supported for all sections. */ export declare const isFunderSectionSupported: (funderCode?: string, section: string) => boolean;