/** * @param prevLine the previous line, undefined if we are on the first line * @param currentLine the current line * @param nextLine the next line, undefined if we are on the last line * @returns true if this marks the beginning of a new entry */ export type EntryIdentifierStrategy = (prevLine: string | undefined, currentLine: string, nextLine: string | undefined) => boolean; /** * Identifies a new entity when an all-caps line follows a non-all-caps line */ export declare const allCapsStrategy: EntryIdentifierStrategy; export declare function splitBulkEntries(bulkInput: string, strategy: EntryIdentifierStrategy): string[];