Repository URL to install this package:
|
Version:
2.1.16 ▾
|
import React from 'react';
import { DarkSelectDropDownProps } from './typings';
declare class DarkSelectDropDown extends React.Component<DarkSelectDropDownProps> {
static defaultProps: {
className: string;
options: ({
label: string;
value: string;
isSelected: boolean;
} | {
label: string;
value: string;
isSelected?: undefined;
})[];
};
render(): JSX.Element;
}
export { DarkSelectDropDown };
export default DarkSelectDropDown;