import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, INodePropertyOptions, ILoadOptionsFunctions } from 'n8n-workflow';
import { getFriendList, getGroupList, getGroupMemberList } from './SearchFunctions';
export declare class OneBot implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getFriendList: typeof getFriendList;
            getGroupList: typeof getGroupList;
            getGroupMemberList: typeof getGroupMemberList;
            getManagedGroupList(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getOwnedGroupList(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
