cookie-test-app
Version:
testing
18 lines (17 loc) • 434 B
TypeScript
import React from 'react';
import './Dropdown.scss';
declare type item = {
id: number;
label: string;
};
interface DropdownProps {
disabled?: boolean;
information?: boolean | string;
onChange: (selectedValue: string) => any;
options: item[];
label: string;
placeholder?: boolean | string;
selectedValue: string;
}
export declare const Dropdown: React.FC<DropdownProps>;
export {};