import React from 'react'; import type { Option } from 'react-select'; interface IStringOptionsProps { strings?: string[]; render?: (options: Array>) => React.ReactNode; children?: (options: Array>) => React.ReactNode; } interface IStringOptionsState { options: Array>; } /** * Converts an array of strings to an array of Options[] suitable for use with react-select * * Example: * * {options => } * */ export declare class StringsAsOptions extends React.Component { private memoizedMakeOptions; render(): React.ReactNode; } export {};