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} * *