import { type RefObject } from "react"; import type { ListState } from "@react-stately/list"; import type { DOMAttributes, FocusableElement } from "@react-types/shared"; import type { ORIENTATION } from "../../../shared/orientation"; import type { InlineButtonsProps } from "./types"; export interface InlineButtonsAria { inlineButtonsProps: DOMAttributes; orientation: keyof typeof ORIENTATION; } export declare function useInlineButtons(props: InlineButtonsProps, state: ListState, ref: RefObject): InlineButtonsAria;