import * as _v0xoss_system_rsc from '@v0xoss/system-rsc'; import { HTMLHeroUIProps, PropGetter } from '@v0xoss/system-rsc'; import { DividerVariantProps } from '@v0xoss/theme'; import { Ref } from 'react'; import { SeparatorProps } from './use-separator.mjs'; import '@react-types/shared'; interface Props extends HTMLHeroUIProps<"hr"> { /** * Ref to the DOM node. */ ref?: Ref | undefined; } type UseDividerProps = Props & DividerVariantProps & Omit; declare function useDivider(props: UseDividerProps): { Component: _v0xoss_system_rsc.As; getDividerProps: PropGetter; }; type UseDividerReturn = ReturnType; export { type UseDividerProps, type UseDividerReturn, useDivider };