import * as React from 'react'; import { InputProps } from '../Input'; import { DropdownLayoutOption, DropdownLayoutValueOption, } from '../DropdownLayout'; import {PropsWithChildren} from "react"; export interface AutoCompleteWithLabelProps { dataHook?: string; label: string; suffix?: React.ReactNode[]; options: DropdownLayoutOption[]; 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; maxHeightPixels?: string | number; placeholder?: string; onSelect?: (option: DropdownLayoutValueOption) => void; native?: boolean; value?: string | number; } export default class AutoCompleteWithLabel extends React.PureComponent> {}