import type { BaseInputComponentProps } from '../typings/index'; import type { JSX } from "react"; type Props = BaseInputComponentProps & JSX.IntrinsicElements['input'] & JSX.IntrinsicElements['textarea']; export declare function MetadataInput(props: Props): JSX.Element; export default MetadataInput;