import React from "react"; import { Element as ElementType } from "../types"; interface ElementWrapper { (element: JSX.Element, index: number): JSX.Element; } export interface ElementsProps { element: ElementType; wrapper?: ElementWrapper; elementKeyPrefix?: string; } export declare const Elements: (props: ElementsProps) => React.JSX.Element; export {};