import React from 'react'; type SelectOption = { value: string; label: string; prevState: null; }; export interface SelectProps { placeholder?: string; options: SelectOption[]; isMulti?: boolean; isSearchable?: boolean; onChange?: (value: any) => any; } export declare const Select: React.FC; export {};