import type { ElementType } from "react";
import type { CompositeSeparatorOptions } from "../composite/composite-separator.tsx";
import type { Props } from "../utils/types.ts";
import type { ToolbarStore } from "./toolbar-store.ts";
declare const TagName = "hr";
type TagName = typeof TagName;
/**
* Returns props to create a `ToolbarSeparator` component.
* @see https://ariakit.com/components/toolbar
* @example
* ```jsx
* const store = useToolbarStore();
* const props = useToolbarSeparator({ store });
*
* Item 1
*
* Item 2
*
* ```
*/
export declare const useToolbarSeparator: import("../utils/types.ts").Hook<"hr", ToolbarSeparatorOptions<"hr">>;
/**
* Renders a divider between
* [`ToolbarItem`](https://ariakit.com/reference/toolbar-item) elements.
* @see https://ariakit.com/components/toolbar
* @example
* ```jsx {3}
*
* Item 1
*
* Item 2
*
* ```
*/
export declare const ToolbarSeparator: (props: ToolbarSeparatorProps) => import("react").ReactElement>;
export interface ToolbarSeparatorOptions extends CompositeSeparatorOptions {
/**
* Object returned by the
* [`useToolbarStore`](https://ariakit.com/reference/use-toolbar-store) hook.
* If not provided, the closest
* [`Toolbar`](https://ariakit.com/reference/toolbar) component's context will
* be used.
*/
store?: ToolbarStore;
}
export type ToolbarSeparatorProps = Props>;
export {};