import { Element } from 'types';
export interface ElementsProps {
    elements: Element[];
    level?: number;
    isText?: boolean;
    parentKey?: string;
}
declare function ElementsComponent(props: ElementsProps): import("react/jsx-runtime").JSX.Element | null;
export declare const Elements: import("react").MemoExoticComponent<typeof ElementsComponent>;
export {};
