import { InvoicingAuditEntry } from '@zeniai/client-epic-state'; import { AuditLogEntityRouteOption } from './auditLogEntityPath'; export interface AuditLogDetailCellProps { entry: InvoicingAuditEntry; routeOptions: AuditLogEntityRouteOption[]; onEntityLinkClick?: (entityType: string, entityId: string) => void; } export declare function AuditLogDetailCell({ entry, routeOptions, onEntityLinkClick, }: Readonly): import("react/jsx-runtime").JSX.Element; export interface AuditLogTargetCellProps { entry: InvoicingAuditEntry; routeOptions: AuditLogEntityRouteOption[]; onEntityLinkClick?: (entityType: string, entityId: string) => void; } export declare function AuditLogTargetCell({ entry, routeOptions, onEntityLinkClick, }: Readonly): import("react/jsx-runtime").JSX.Element;