@chatui/core
Version:
The React library for Chatbot UI
8 lines (7 loc) • 325 B
TypeScript
import React from 'react';
import { InputVariant } from '../Input';
export interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
placeholder?: string;
variant?: InputVariant;
}
export declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLSelectElement>>;