/** * Break a single string into an array of lines * @param str */ export declare function getLines(str: string): string[]; export declare const allCapsNamePattern: RegExp; /** * Get the name of an entity. * In most cases, this identifies the first line as the name, * but in cases where there are 2+ lines in all caps at the start, * it will assume they are all part of the name. * @param lines */ export declare function getName(lines: string[]): string;