UNPKG

@react-beauty/ui-select

Version:

ui-select

10 lines (9 loc) 423 B
import { ReactNode, HTMLAttributes } from 'react'; export interface SelectContainerProps extends HTMLAttributes<HTMLDivElement> { hasError?: boolean; isDisabled?: boolean; value?: string; onValueChange?: (value: string) => void; children: ReactNode; } export declare const SelectContainer: import('react').ForwardRefExoticComponent<SelectContainerProps & import('react').RefAttributes<HTMLDivElement>>;