/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { ICommandBarProps } from '@fluentui/react'; import type { CommandBarColors } from '../../types.js'; /** * Helper to create the props necessary for the default inverted management bar. * Basic colors can be customized, but note that if you do not want an always-inverted * bar like that used in the DataShaper webapp, you may want to just tweak the Fluent * styles as normal. * @returns */ export declare function useHeaderCommandBarDefaults(props?: Partial, far?: boolean, colors?: Partial): ICommandBarProps;