import React from 'react'; type OmitProperties = 'type' | 'id'; interface TextBoxProps extends Omit, OmitProperties> { type?: 'text' | 'email' | 'password' | 'number' | 'tel'; name: string; label?: string; labelPosition?: 'left' | 'top'; } declare const TextBox: React.ForwardRefExoticComponent & React.RefAttributes>; export default TextBox;