/// declare type TagOrHTML = keyof JSX.IntrinsicElements | string; /** Tests if the component mounts into the page and displays as defaulted */ declare const renders: (componentTagOrHTML: TagOrHTML, options?: { display?: string; visible?: boolean; }) => Promise; interface CustomInputOptions extends HTMLInputElement { /** @param customValue is the text entered into the input field. */ customValue: string; } declare const inputFormSubmit: (options?: Partial, componentName?: string) => Promise; export { renders, inputFormSubmit };