import { type ToolbarProps } from "./Toolbar.js"; import { type ToolbarItemData } from "./types.js"; import "./FlexToolbar.css"; export type FlexToolbarProps = ToolbarProps & { dotsTitle: string | (() => string); hiddenActions?: ToolbarItemData[]; }; export declare function FlexToolbar(props: FlexToolbarProps): JSX.Element;