import type { ElementType } from "react";
import type { CompositeSeparatorOptions } from "../composite/composite-separator.tsx";
import type { Props } from "../utils/types.ts";
import type { SelectStore } from "./select-store.ts";
declare const TagName = "hr";
type TagName = typeof TagName;
/**
* Returns props to create a `SelectSeparator` component.
* @deprecated Use `useSelectGroup` with CSS borders instead.
* @see https://ariakit.com/components/select
* @example
* ```jsx
* const store = useSelectStore();
* const props = useSelectSeparator({ store });
*
*
*
*
*
*
* ```
*/
export declare const useSelectSeparator: import("../utils/types.ts").Hook<"hr", SelectSeparatorOptions<"hr">>;
/**
* Renders a divider between
* [`SelectItem`](https://ariakit.com/reference/select-item) elements.
* @deprecated Use [`SelectGroup`](https://ariakit.com/reference/select-group)
* with CSS borders instead.
* @see https://ariakit.com/components/select
* @example
* ```jsx {5}
*
*
*
*
*
*
*
*
*
* ```
*/
export declare const SelectSeparator: (props: SelectSeparatorProps) => import("react").ReactElement>;
export interface SelectSeparatorOptions extends CompositeSeparatorOptions {
/**
* Object returned by the
* [`useSelectStore`](https://ariakit.com/reference/use-select-store) hook. If
* not provided, the parent
* [`SelectList`](https://ariakit.com/reference/select-list) or
* [`SelectPopover`](https://ariakit.com/reference/select-popover) components'
* context will be used.
*/
store?: SelectStore;
}
export type SelectSeparatorProps = Props>;
export {};