/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { TableContainer } from '@datashaper/tables'; import type { ICommandBarItemProps } from '@fluentui/react'; /** * Displays a table name along with a dropdown menu for selection of different tables. * @returns */ export declare function tableMenuCommand(tables: TableContainer[], selectedKey?: string | undefined, onChange?: (id: string) => void, props?: Partial): ICommandBarItemProps;