import { IRequestOptions } from "n8n-workflow/dist/Interfaces";
import { RESOURCE_LIST } from "../apiDefinition";
export declare class RequestHelper {
    private replacePlaceholders;
    buildRequest(resource: RESOURCE_LIST, operation: string, uriParams: Record<string, string>, formParams: object): IRequestOptions;
    static getCleanFormData(formParams: Record<string, any>): Record<string, any>;
    getAllUriParams(resource: RESOURCE_LIST, operation: string): string[];
}
