import { Action, Body, Controller, Method, Property, Service, ServiceGeneratorParams, Signature } from '../models'; export declare function serializeParameters(parameters: Property[]): string; export declare function createControllerToServiceMapper({ solution, types, apiName, }: ServiceGeneratorParams): (controller: Controller) => Service; export declare function createActionToMethodMapper(): (action: Action) => Method; export declare function createActionToBodyMapper(): ({ httpMethod, parameters, returnValue, url }: Action) => Body; export declare function createActionToSignatureMapper(): (action: Action) => Signature; export declare function isRemoteStreamContent(type: string): boolean; export declare function isRemoteStreamContentArray(type: string): boolean;