import type { MedipassRequestOpts, PaginatedResponse, Transaction } from '../types'; import type * as agedCareTypes from '../types/aged-care'; export * from '../types/aged-care'; export declare const pathGetCareRecipientDetails: (careRecipientId: string) => string; export declare const pathSearchCareRecipients: () => string; export declare const pathSearchSingleCareRecipient: () => string; export declare const pathGetServiceProviderDetails: (serviceProviderId: string) => string; export declare const pathRegisteredProvider: (registeredProviderId: string) => string; export declare const pathRegisteredProviders: () => string; export declare const pathMyRegisteredProvider: () => string; export declare const pathGetServiceProviderAccountSummary: (serviceProviderId: string) => string; export declare const pathLegacyServiceProviders: () => string; export declare const pathCreateDraftInvoice: () => string; export declare const pathGetServices: () => string; export declare const pathGetMedipassAgedCareClaims: (businessId: string) => string; export declare const pathGetMedipassAgedCareClaim: (businessId: string, claimId: string) => string; export declare const pathClaims: () => string; export declare const pathGetClaim: (claimId: string) => string; export declare const pathGetTransactionFiles: (transactionId: string) => string; export declare const pathGetInvoice: (invoiceId: string) => string; export declare const pathGetInvoices: () => string; export declare const pathGetInvoiceItem: (invoiceId: string, itemId: string) => string; export declare const pathGetPaymentStatement: () => string; export declare const pathUploadUrl: () => string; export declare const pathInvoiceItemAttachment: (invoiceId: string, itemId: string) => string; export declare const pathPaymentItemsReport: () => string; export declare const pathOnboard: () => string; export declare const pathProdaDetails: () => string; export declare const pathCreateEnteralFeedingSupplementAttachment: (supplementId: string) => string; export declare const pathCreateOxygenSupplementAttachment: (supplementId: string) => string; export declare const pathGetIndividualContributions: () => string; export declare const pathGetCareRecipientBudgets: (careRecipientId: string) => string; export declare const pathGetServiceProviderBudgets: (serviceProviderId: string) => string; export declare const pathGetServiceProviderActiveBudgets: (serviceProviderId: string) => string; export declare const pathGetBudgetDetails: (budgetId: string) => string; export declare const pathBudgetRollover: (budgetId: string) => string; export declare const pathGetEnteralFeedingSupplementDetails: (supplementId: string) => string; export declare const pathEnteralFeedingSupplements: () => string; export declare const pathOxygenSupplements: () => string; export declare const pathOxygenSupplement: (supplementId: string) => string; export declare const pathEnteralFeedingSupplement: (supplementId: string) => string; export declare const pathUpdateEnteralFeedingSupplementEndDate: () => string; export declare const pathUpdateOxygenSupplementEndDate: () => string; export declare const pathEntries: () => string; export declare const pathEntry: (entryEventId: string) => string; export declare const pathDepartures: () => string; export declare const pathDeparture: (departureEventId: string) => string; export declare const pathEvents: () => string; export declare const pathFundingSources: () => string; export declare const pathLateSubmissionReasons: () => string; export declare const pathBudgetItemCodes: () => string; export declare const pathCorrespondence: () => string; export declare const pathEnteralFeedingSupplementAttachmentDownloadRequest: (supplementId: string, attachmentId: string) => string; export declare const pathOxygenSupplementAttachmentDownloadRequest: (supplementId: string, attachmentId: string) => string; export declare const pathInvoiceItemAttachmentDownloadRequest: (invoiceId: string, attachmentId: string) => string; export declare const pathPaymentStatementDownloadRequest: () => string; export declare const pathCorrespondenceDownloadRequest: (correspondenceId: string) => string; export declare const createDraftInvoice: (body: agedCareTypes.CreateAgedCareInvoiceBody, opts?: MedipassRequestOpts) => Promise; export declare const createClaim: (body: agedCareTypes.CreateClaimRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const getCareRecipientDetails: (careRecipientId: string, query?: agedCareTypes.GetCareRecipientDetailsQuery, opts?: MedipassRequestOpts) => Promise; export declare const searchCareRecipients: (query?: agedCareTypes.SearchCareRecipientsQuery, opts?: MedipassRequestOpts) => Promise; export declare const searchSingleCareRecipient: (query?: agedCareTypes.SearchSingleCareRecipientQuery, opts?: MedipassRequestOpts) => Promise; export declare const getServiceProviderDetails: (serviceProviderId: string, query?: agedCareTypes.GetServiceProviderDetailsQuery, opts?: MedipassRequestOpts) => Promise; export declare const getLegacyServiceProviders: (query?: agedCareTypes.GetLegacyServiceProviderDetailsQuery, opts?: MedipassRequestOpts) => Promise; export declare const getServices: (query: agedCareTypes.GetServicesQuery, opts?: MedipassRequestOpts) => Promise>; export declare const getProdaDetails: (query: agedCareTypes.GetProdaDetailsQuery, opts?: MedipassRequestOpts) => Promise; export declare const onboard: (body: agedCareTypes.OnboardRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const getRegisteredProvider: (registeredProviderId: string, query?: agedCareTypes.GetRegisteredProviderQuery, opts?: MedipassRequestOpts) => Promise; export declare const getRegisteredProviders: (query?: agedCareTypes.GetRegisteredProvidersQuery, opts?: MedipassRequestOpts) => Promise; export declare const getMyRegisteredProvider: (query?: agedCareTypes.GetMyRegisteredProviderQuery, opts?: MedipassRequestOpts) => Promise; export declare const getServiceProviderAccountSummary: (serviceProviderId: string, query?: agedCareTypes.GetServiceProviderAccountSummaryQuery, opts?: MedipassRequestOpts) => Promise; export declare const getMedipassAgedCareClaims: (businessId: string, query?: agedCareTypes.GetClaimsQuery, opts?: MedipassRequestOpts) => Promise>; export declare const getMedipassAgedCareClaim: (businessId: string, claimId: string, query: {}, opts?: MedipassRequestOpts) => Promise; export declare const getClaim: (claimId: string, query?: agedCareTypes.GetClaimQuery, opts?: MedipassRequestOpts) => Promise; export declare const getPaymentStatement: (query: agedCareTypes.GetPaymentStatementQuery, opts?: MedipassRequestOpts) => Promise; export declare const uploadAgedCareUrl: (body: agedCareTypes.AgedCareUploadUrlRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const createInvoiceItemAttachment: (invoiceId: string, itemId: string, body: agedCareTypes.CreateInvoiceItemAttachmentRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const getTransactionFiles: (transactionId: string, query?: agedCareTypes.GetTransactionFilesQuery, opts?: MedipassRequestOpts) => Promise>; export declare const getInvoice: (invoiceId: string, query?: agedCareTypes.GetInvoiceQuery, opts?: MedipassRequestOpts) => Promise; export declare const getInvoiceItem: (invoiceId: string, itemId: string, query?: agedCareTypes.GetInvoiceQuery, opts?: MedipassRequestOpts) => Promise; export declare const getPaymentItemsReport: (query?: agedCareTypes.GetPaymentItemsReportQuery, opts?: MedipassRequestOpts) => Promise>; export declare const createEnteralFeedingSupplementAttachment: (supplementId: string, body: agedCareTypes.CreateEnteralFeedingSupplementAttachmentRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const createOxygenSupplementAttachment: (supplementId: string, body: agedCareTypes.CreateOxygenSupplementAttachmentRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const getIndividualContributions: (query?: agedCareTypes.GetIndividualContributionsQuery, opts?: MedipassRequestOpts) => Promise>; export declare const getCareRecipientBudgets: (careRecipientId: string, query?: agedCareTypes.GetCareRecipientBudgetsQuery, opts?: MedipassRequestOpts) => Promise>; export declare const getServiceProviderBudgets: (serviceProviderId: string, query?: agedCareTypes.GetServiceProviderBudgetsQuery, opts?: MedipassRequestOpts) => Promise>; export declare const getServiceProviderActiveBudgets: (serviceProviderId: string, query?: agedCareTypes.GetServiceProviderActiveBudgetsQuery, opts?: MedipassRequestOpts) => Promise>; export declare const getBudgetDetails: (budgetId: string, query?: agedCareTypes.GetBudgetDetailsQuery, opts?: MedipassRequestOpts) => Promise; export declare const rolloverBudget: (budgetId: string, body: agedCareTypes.BudgetRolloverBody, opts?: MedipassRequestOpts) => Promise; export declare const getEnteralFeedingSupplementDetails: (supplementId: string, query?: agedCareTypes.GetEnteralFeedingSupplementDetailsQuery, opts?: MedipassRequestOpts) => Promise; export declare const getOxygenSupplementDetails: (supplementId: string, query?: agedCareTypes.GetOxygenSupplementDetailsQuery, opts?: MedipassRequestOpts) => Promise; export declare const getEnteralFeedingSupplements: (query?: agedCareTypes.GetEnteralFeedingSupplementsQuery, opts?: MedipassRequestOpts) => Promise; export declare const createEnteralFeedingSupplement: (body: agedCareTypes.CreateEnteralFeedingSupplementRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const updateEnteralFeedingSupplement: (supplementId: string, body: agedCareTypes.UpdateEnteralFeedingSupplementRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const getOxygenSupplements: (query?: agedCareTypes.GetOxygenSupplementsQuery, opts?: MedipassRequestOpts) => Promise; export declare const createOxygenSupplement: (body: agedCareTypes.CreateOxygenSupplementRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const updateOxygenSupplement: (supplementId: string, body: agedCareTypes.UpdateOxygenSupplementRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const deleteEnteralFeedingSupplement: (supplementId: string, body?: agedCareTypes.DeleteEnteralFeedingSupplementQuery, opts?: MedipassRequestOpts) => Promise; export declare const deleteOxygenSupplement: (supplementId: string, body?: agedCareTypes.DeleteOxygenSupplementQuery, opts?: MedipassRequestOpts) => Promise; export declare const updateEnteralFeedingSupplementEndDate: (body: agedCareTypes.UpdateEnteralFeedingSupplementEndDateRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const updateOxygenSupplementEndDate: (body: agedCareTypes.UpdateOxygenSupplementEndDateRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const getEntries: (query?: agedCareTypes.GetEntriesQuery, opts?: MedipassRequestOpts) => Promise; export declare const getEntry: (entryEventId: string, query: agedCareTypes.GetEntryQuery, opts?: MedipassRequestOpts) => Promise; export declare const updateEntry: (entryEventId: string, body: agedCareTypes.UpdateEntryRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const createEntry: (body: agedCareTypes.CreateEntryRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const deleteEntry: (entryEventId: string, body: agedCareTypes.DeleteEntryQuery, opts?: MedipassRequestOpts) => Promise; export declare const getDepartures: (query?: agedCareTypes.GetDeparturesQuery, opts?: MedipassRequestOpts) => Promise; export declare const getDeparture: (departureEventId: string, query: agedCareTypes.GetDepartureQuery, opts?: MedipassRequestOpts) => Promise; export declare const updateDeparture: (departureEventId: string, body: agedCareTypes.UpdateDepartureRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const createDeparture: (body: agedCareTypes.CreateDepartureRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const deleteDeparture: (departureEventId: string, body: agedCareTypes.DeleteDepartureQuery, opts?: MedipassRequestOpts) => Promise; export declare const createEnteralFeedingSupplementAttachmentDownloadRequest: (supplementId: string, attachmentId: string, body: agedCareTypes.CreateEnteralFeedingSupplementAttachmentDownloadRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const createOxygenSupplementAttachmentDownloadRequest: (supplementId: string, attachmentId: string, body: agedCareTypes.CreateOxygenSupplementAttachmentDownloadRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const createPaymentStatementDownloadRequest: (body: agedCareTypes.CreatePaymentStatementDownloadRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const createInvoiceItemAttachmentDownloadRequest: (invoiceId: string, attachmentId: string, body: agedCareTypes.CreateInvoiceItemAttachmentDownloadRequestBody, opts?: MedipassRequestOpts) => Promise; export declare const getFundingSources: (query?: agedCareTypes.GetFundingSourcesQuery, opts?: MedipassRequestOpts) => Promise; export declare const getLateSubmissionReasons: (query?: agedCareTypes.GetLateSubmissionReasonsQuery, opts?: MedipassRequestOpts) => Promise; export declare const getBudgetItemCodes: (query?: agedCareTypes.GetBudgetItemCodesQuery, opts?: MedipassRequestOpts) => Promise; export declare const getEvents: (query?: agedCareTypes.GetEventsQuery, opts?: MedipassRequestOpts) => Promise; export declare const getInvoices: (query?: agedCareTypes.GetInvoicesQuery, opts?: MedipassRequestOpts) => Promise; export declare const getAgedCareClaims: (query?: agedCareTypes.GetAgedCareClaimsQuery, opts?: MedipassRequestOpts) => Promise; export declare const getCorrespondence: (query?: agedCareTypes.GetCorrespondenceQuery, opts?: MedipassRequestOpts) => Promise; export declare const createCorrespondenceDownloadRequest: (correspondenceId: string, body: agedCareTypes.CorrespondenceDownloadRequestBody, opts?: MedipassRequestOpts) => Promise;