import type { PolymorphicComponent } from "../types/helpers";
import { FlexContainer } from "./Container";
/** @alpha */
export interface BaseCommandBarProps {
/** Whether to make the command bar grow to fill available space */
flexGrow?: boolean;
/** Whether to add padding around the command bar */
gutter?: boolean;
}
/**
* The `CommandBar` component provides a container for command-based UI
* elements, typically used for toolbars or action bars.
*
* @example Basic usage
*
* ```tsx
*
*
*
*
* ;
* ```
*
* @alpha
*/
export declare const CommandBar: PolymorphicComponent;
//# sourceMappingURL=CommandBar.d.ts.map