jslib-nightly
Version:
SheerID JavaScript Library
24 lines (23 loc) • 713 B
TypeScript
import { FormSelectChoice } from '../../../lib/types/types';
interface SelectProps {
className?: string;
hideDropDownButton?: boolean;
isErrored?: boolean;
onChange: any;
options: FormSelectChoice[];
overrideInputClassName?: string;
placeholder?: string;
value?: FormSelectChoice;
}
export declare const SelectComponent: {
({ className, hideDropDownButton, isErrored, options, onChange, overrideInputClassName, placeholder, value, }: SelectProps): JSX.Element;
defaultProps: {
className: any;
hideDropDownButton: boolean;
isErrored: boolean;
overrideInputClassName: any;
placeholder: string;
value: any;
};
};
export {};