export interface BookingInvoiceSheetProps { invoiceId: string; /** Navigate to the full invoice detail page. */ onOpenInvoice?: (invoiceId: string) => void; } /** * Compact invoice view designed to live inside a `Sheet` next to the * booking detail page. Unlike `InvoiceDetailPage` (a standalone page * with breadcrumb + action bar + collapsible cards), this component * trims the chrome and focuses on the operator's reconciliation needs: * summary numbers, line items, payments. Big actions (edit, void) * stay on the dedicated invoice page. * * Packaged host piece (packaged-admin RFC Phase 3): API base URL comes * from the shell's finance provider context — no app env import. */ export declare function BookingInvoiceSheet({ invoiceId, onOpenInvoice }: BookingInvoiceSheetProps): import("react").JSX.Element;