import type { JSX } from 'solid-js'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; export type ToolbarProps = HeadlessPropsWithRef; /** * A group of controls that share one tab stop. The arrow keys move between * them, so a toolbar of ten buttons costs the keyboard user one `Tab` instead * of ten. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/toolbar.md} */ export declare function Toolbar(props: ToolbarProps): JSX.Element; //# sourceMappingURL=index.d.ts.map