import { AiAccountantCustomerView, AiAccountantJobView, AiAccountantOperationType, FetchStateAndError } from '@zeniai/client-epic-state'; interface Props { customer: AiAccountantCustomerView; hasMoreJobs: boolean; jobs: AiAccountantJobView[]; jobsFetchStatus: FetchStateAndError; onAction: (customer: AiAccountantCustomerView, operation: AiAccountantOperationType, startDate: string, endDate: string) => void; onCancelOnboarding: (customer: AiAccountantCustomerView) => void; onClose: () => void; onLoadMoreJobs: () => void; } declare const AiAccountantDetailDrawer: ({ customer, hasMoreJobs, jobs, jobsFetchStatus, onAction, onCancelOnboarding, onClose, onLoadMoreJobs, }: Props) => import("react/jsx-runtime").JSX.Element; export default AiAccountantDetailDrawer;