import * as React from 'react'; import { InputProps } from '../Input'; import {PropsWithChildren} from "react"; export interface InputWithLabelProps { dataHook?: string; suffix?: React.ReactNode[]; label?: string; value?: string | number; status?: InputProps['status']; statusMessage?: InputProps['statusMessage']; onFocus?: React.FocusEventHandler; onBlur?: React.FocusEventHandler; onChange?: React.ChangeEventHandler; name?: string; type?: string; ariaLabel?: string; autoFocus?: boolean; autocomplete?: string; disabled?: boolean; className?: string; maxLength?: number; placeholder?: string; customInput?: React.ReactNode | Function; } export default class InputWithLabel extends React.Component> {}