import { ApiSpec } from '../schema/WebApiSchema.js'; import { PagingState } from '../types/PagingState.js'; import { PluginContext } from '../types/PluginContext.js'; import { SqupContext } from '../types/SqupContext.js'; export declare function CallApi(pluginContext: PluginContext, apiIn: ApiSpec, pagingState: PagingState, squpContext: SqupContext, replacements?: Record>): Promise<{ response?: Response; data: any; }>;