import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class ActiveDirectoryAdmin implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getGroupsList(this: ILoadOptionsFunctions): Promise; getOUsList(this: ILoadOptionsFunctions): Promise; getGroupAttributes(this: ILoadOptionsFunctions): Promise; getUserAttributes(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; }