import { ReactNode, CSSProperties, HTMLAttributes } from 'react';
import { Theme } from './Theme';
import { ToolbarItem } from './ToolbarItem';
export type ToolbarProps = {
/**
* Child nodes to be rendered within the toolbar.
*/
children?: ReactNode | ReactNode[];
/**
* Array of toolbar items to be displayed.
*/
items?: ToolbarItem[];
/**
* Theme settings for the toolbar.
*/
theme: Theme;
/**
* Use Vanilla Extract toolbar styles (styled-components have been removed).
*/
useVeStyles?: boolean;
/**
* Custom CSS styles to apply to the toolbar.
*/
style?: CSSProperties;
} & Omit, 'children' | 'style'>;
//# sourceMappingURL=ToolbarProps.d.ts.map