/**
 * Joins strings with commas and 'and', based on English rules, limiting the number of items enumerated to keep from filling the console.
 * @param items strings to join
 * @param limit max number of strings to enumerate before using 'others'
 * @returns joined string
 */
export declare function joinWithCommasAnd(items: string[], limit?: number | undefined): string;
