import { INodeType, INodeTypeDescription, IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
declare module 'n8n-workflow' {
    interface INodeTypeDescription {
        usableAsTool?: boolean;
    }
}
export declare class HebrewCalendar implements INodeType {
    description: INodeTypeDescription;
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
