/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { DescriptionRow, StepDescriptionProps } from '../verbs/index.js'; /** * Executes provided print function on a list to create a series of display entries. * Uses the max to limit how many rows are returned to print, but stringifies the entire list * to use as a tooltip/title. * @param print - * @param others - number of other rows besides this generated list */ export declare function createRowEntries(list: T[], print: (obj: T) => DescriptionRow, others: number, props: StepDescriptionProps): DescriptionRow[];