import React, { type ReactNode } from 'react'; import { type Styles } from '../styles.js'; export type Props = { /** * Array of items of any type to render using a function you pass as a component child. */ readonly items: T[]; /** * Styles to apply to a container of child elements. See for supported properties. */ readonly style?: Styles; /** * Function that is called to render every item in `items` array. * First argument is an item itself and second argument is index of that item in `items` array. * Note that `key` must be assigned to the root component. */ readonly children: (item: T, index: number) => ReactNode; }; /** * `` component permanently renders its output above everything else. * It's useful for displaying activity like completed tasks or logs - things that * are not changing after they're rendered (hence the name "Static"). * * It's preferred to use `` for use cases like these, when you can't know * or control the amount of items that need to be rendered. * * For example, [Tap](https://github.com/tapjs/node-tap) uses `` to display * a list of completed tests. [Gatsby](https://github.com/gatsbyjs/gatsby) uses it * to display a list of generated pages, while still displaying a live progress bar. */ export default function Static(props: Props): React.JSX.Element;