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