import { IDataObject, IExecuteFunctions } from 'n8n-workflow';
export interface EntityHandler {
    create(this: IExecuteFunctions, index: number): Promise<IDataObject>;
    get(this: IExecuteFunctions, index: number): Promise<IDataObject>;
    update(this: IExecuteFunctions, index: number): Promise<IDataObject>;
    delete(this: IExecuteFunctions, index: number): Promise<IDataObject>;
    getAll(this: IExecuteFunctions, index: number): Promise<IDataObject[]>;
}
