import { ReactElement } from 'react'; export interface InvoicingOpenEntityValueProps { dataTestId: string; label: string; ariaLabel?: string; onOpen: () => void; } /** * Linked-entity value for the invoicing detail pages: the name stays plain text * and only a trailing open-in-new-tab icon is a click target, so long names * don't read as one large hyperlink. Shared so the invoice and subscription * detail pages can't drift apart. */ export declare function InvoicingOpenEntityValue({ ariaLabel, dataTestId, label, onOpen, }: Readonly): ReactElement;