import { AiAccountantCustomerView, AiAccountantOperationType, AiAccountantSortKey, ID, SortOrder } from '@zeniai/client-epic-state'; interface Props { customers: AiAccountantCustomerView[]; selectedTenantIds: ID[]; sortKey: AiAccountantSortKey; sortOrder: SortOrder; onAction: (customer: AiAccountantCustomerView, operation: AiAccountantOperationType, startDate: string, endDate: string) => void; onCancelOnboarding: (customer: AiAccountantCustomerView) => void; onColumnSortConfigChanged: (sortKey: AiAccountantSortKey, sortOrder: SortOrder) => void; onRowClick: (customer: AiAccountantCustomerView) => void; onToggleAllVisible: (tenantIds: ID[]) => void; onToggleTenantSelection: (tenantId: ID) => void; } declare const AiAccountantCustomerTable: ({ customers, sortKey, sortOrder, selectedTenantIds, onAction, onCancelOnboarding, onColumnSortConfigChanged, onRowClick, onToggleAllVisible, onToggleTenantSelection, }: Props) => import("react/jsx-runtime").JSX.Element; export default AiAccountantCustomerTable;