import { TGoto } from "../entities/SharedTypes"; export declare class EntHelper { static get IdFirstCharRegex(): RegExp; static get IdOtherCharsRegex(): RegExp; static CamelCase(aString: string): string; static GetIdFromName(aName: string): string; static IsSingleGoto(goto: TGoto): boolean; static StrToStrArray(aStrOrStrArray: string | string[]): string[]; }