import React from "react"; export interface OnElementTypeProps { elementType: string; children: React.ReactNode; } export interface ElementInputProps { elementType: string; inputName: string; label: string; } export declare const ElementBinding: ({ elementType, inputName, label }: ElementInputProps) => React.JSX.Element;