import React from 'react'; import type { RendererProps, Schema } from 'jamis-core'; import type { EachSchema } from './types'; interface EachProps extends RendererProps, Omit { name: string; items: Schema; } export default class Each extends React.Component { static propsList: Array; static defaultProps: { className: string; placeholder: string; }; render(): JSX.Element; } export declare class EachRenderer extends Each { } export {};