/** * Converts an array of strings into a human-readable list by adding commas and "and" before the last item. */ export declare const toHumanReadableList: (arr: string[], conjunction?: string) => string;