// @ts-nocheck import { Models } from '../models'; export declare namespace FiredevHelpers { const fillUpTo: (s: string, nCharacters: number) => string; const isGoodPath: (p: string) => boolean; const tryTransformParam: (param: any) => any; const getExpressPath: (c: Models.RuntimeControllerConfig, pathOrClassConfig: Models.MethodConfig) => string; const defaultType: (value: any) => {}; const parseJSONwithStringJSONs: (object: Object, waring?: boolean) => Object; const isPlainFileOrFolder: (filePath: any) => boolean; const ipcKeyNameResponse: (target: Function, methodConfig: Models.MethodConfig, expressPath: string) => string; const ipcKeyNameRequest: (target: Function, methodConfig: Models.MethodConfig, expressPath: string) => string; const websqlMocks: (headers: any) => { request: Express.Request; response: Express.Response; }; }