/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { ICommandBarItemProps } from '@fluentui/react'; /** * Constructs a command for listing out items with checks * @param list - full list of items to display * @param checked - subset of items to display with checkbox * @param onCheckChange - * @param props - any override ICommandBarItemProps to overlay on the command * @returns */ export declare function checkedItemsCommand(list: string[], checked?: string[], onCheckChange?: (name: string, checked: boolean, index: number) => boolean | void, props?: Partial): ICommandBarItemProps;