import { InvoicingCreditNote } from '@zeniai/client-epic-state'; export interface InvoicingCreditDetailPageProps { creditNoteId: string; isLoading: boolean; creditNote?: InvoicingCreditNote; onBack?: () => void; onCustomerClick?: (customerId: string) => void; onInvoiceClick?: (invoiceId: string) => void; onSubscriptionClick?: (subscriptionId: string) => void; } export declare function InvoicingCreditDetailPage({ creditNote, creditNoteId, isLoading, onBack, onCustomerClick, onInvoiceClick, onSubscriptionClick, }: Readonly): import("react/jsx-runtime").JSX.Element; export default InvoicingCreditDetailPage;