/** Single-line text field. Black fill, neutral-800 hairline, ring-coloured focus border. */ export interface InputProps extends React.InputHTMLAttributes { invalid?: boolean } export function Input(props: InputProps): JSX.Element;