UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

21 lines (20 loc) 782 B
import { ElementType, ForwardedRef } from 'react'; export type ListboxContainerProperties = { /** @ignore */ className?: string; /** Is Disabled */ disabled?: boolean; /** Error */ error?: boolean; /** Tag of Component */ tag?: ElementType; }; /** * Container for listbox component. * @docs {@link https://design.visa.com/react/components/listbox | See Docs} */ declare const _default: <HTMLElementType = HTMLDivElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & ListboxContainerProperties) => import("react").ReactElement; export default _default;