import React from "react"; import type { ToolbarAction } from "./types"; interface ToolbarProps { baseId: string; baseTestId: string; enabledActions: ToolbarAction[]; disabled?: boolean; ariaControls: string; } export declare const Toolbar: (props: ToolbarProps) => React.ReactElement; export {};