import * as React from 'react' import { WidgetProps } from '@ui-schema/ui-schema/Widget' import { WithOnChange, WithValue } from '@ui-schema/ui-schema' import { ListButtonOverwrites } from '@ui-schema/ds-material/Component' export type SimpleListItemProps = Pick export function SimpleListItem

(props: P): React.ReactElement export function SimpleListInner

(props: P & { listSize: number } & ListButtonOverwrites & WithOnChange): React.ReactElement export function SimpleListBase

(props: P & { listSize: number } & ListButtonOverwrites & WithOnChange): React.ReactElement export function SimpleListWrapper

(props: P & ListButtonOverwrites & WithValue): React.ReactElement export function SimpleList

(props: P & ListButtonOverwrites): React.ReactElement