import { SourceFile } from 'ts-morph'; /** * Adds the value to the array with the name arrayName * * @param sourceFile * @param arrayName * @param value * @param type The variable type of the array declaration * @param overwrite * @constructor */ export declare function AddToArray(sourceFile: SourceFile, arrayName: string, value: string, type?: string, overwrite?: boolean | string[]): void;