import { IResourceDescription } from '../../interfaces'; import { INodeProperties } from 'n8n-workflow'; import { createDebtor, getDebtor, listDebtors } from './operations'; export declare const debtorOperations: INodeProperties[]; export declare const debtorDescription: IResourceDescription; export declare const debtorOperationMapping: { create: typeof createDebtor; get: typeof getDebtor; list: typeof listDebtors; }; export { createDebtor, getDebtor, listDebtors, };