/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ type Options = { echo?: string; ask?: string; value?: string; autocomplete?: string[] | (() => void); }; declare function create(): (ask?: string | Options, value?: string | Options, opts?: Options) => string | Options | null; export default create;