import * as React from 'react'; import { BaseUIComponentProps } from "../../utils/types.js"; import type { ToolbarRoot } from "../root/ToolbarRoot.js"; /** * A link component. * Renders an `` element. * * Documentation: [Base UI Toolbar](https://base-ui.com/react/components/toolbar) */ export declare const ToolbarLink: React.ForwardRefExoticComponent>; export interface ToolbarLinkState { orientation: ToolbarRoot.Orientation; } export interface ToolbarLinkProps extends BaseUIComponentProps<'a', ToolbarLink.State> {} export declare namespace ToolbarLink { type State = ToolbarLinkState; type Props = ToolbarLinkProps; }