import React, { type ReactNode } from "react"; type Styles = any; export type Props = { readonly items: T[]; readonly style?: Styles; readonly children: (item: T, index: number) => ReactNode; }; export default function Static(props: Props): React.JSX.Element; export {};