import type { HTMLAttributes, Ref } from "react"; type Gap = 8 | 12 | 16; export interface ToolbarProps extends HTMLAttributes { /** Gap between controls in px. @default 8 */ gap?: Gap; /** Forwarded ref to the root element. */ ref?: Ref; } /** Horizontal grouping row for filter/search controls (D52). Wraps on * overflow; zero JS. Deliberately NOT ARIA role="toolbar" — that role * contracts roving-tabindex arrow-key navigation, wrong for form controls. * With aria-label it announces as role="group". */ export declare function Toolbar({ gap, className, children, ref, ...rest }: ToolbarProps): import("react").JSX.Element; export {}; //# sourceMappingURL=Toolbar.d.ts.map