import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; import { searchDevices, searchGroups, searchUsers } from './SearchFunctions'; export declare class GSuiteAdmin implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getDomains(this: ILoadOptionsFunctions): Promise; getSchemas(this: ILoadOptionsFunctions): Promise; getOrgUnits(this: ILoadOptionsFunctions): Promise; }; listSearch: { searchDevices: typeof searchDevices; searchGroups: typeof searchGroups; searchUsers: typeof searchUsers; }; }; execute(this: IExecuteFunctions): Promise; } //# sourceMappingURL=GSuiteAdmin.node.d.ts.map