import type React from 'react';
export interface ElementProps {
    children: React.ReactNode[];
}
export declare const Element: {
    (props: ElementProps): any;
    serialize(elementProps: any): any;
};
