import { ConstructorDeclaration, ParameterDeclaration } from 'ts-morph'; import { IParameter } from './common'; export declare const CONSTRUCTOR_PARAMETER_TYPES: Map; export declare function constructorAddParameters(tableContructor: ConstructorDeclaration, existingParameters?: IParameter[]): Promise; export declare function constructorAddParameter(contructor: ConstructorDeclaration, parameter: IParameter): ParameterDeclaration;