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