/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { IDropdownOption } from '@fluentui/react'; /** * Make a basic set of string options from an array * @param list - * @returns */ export declare function useSimpleDropdownOptions(list: string[]): IDropdownOption[]; export declare function getSimpleDropdownOptions(list: string[]): IDropdownOption[];