import { INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodeListSearchResult, ResourceMapperFields, IWebhookFunctions, IWebhookResponseData, IExecuteFunctions } from 'n8n-workflow';
export declare class GotoHuman implements INodeType {
    description: INodeTypeDescription;
    methods: {
        listSearch: {
            searchReviewTemplates(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
        };
        resourceMapping: {
            getMappingFields(this: ILoadOptionsFunctions): Promise<ResourceMapperFields>;
        };
    };
    execute(this: IExecuteFunctions): Promise<import("n8n-workflow").INodeExecutionData[][]>;
    webhook: (this: IWebhookFunctions) => Promise<IWebhookResponseData>;
}
