UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

14 lines (13 loc) 393 B
import React from "react"; type ComboboxWrapperProps = { children: any; className?: string; hasError: boolean; inputProps: { disabled?: boolean; }; readOnly?: boolean; inputSize: string; }; declare const ComboboxWrapper: ({ children, className, hasError, inputProps, inputSize, }: ComboboxWrapperProps) => React.JSX.Element; export default ComboboxWrapper;