import { HTMLAttributes, RefObject } from 'react';
import type { FocusableDOMProps } from '../../shared/types';
export interface UseFocusableProps extends FocusableDOMProps {
disabled?: boolean;
}
export interface UseFocusableResult {
focusableProps: HTMLAttributes;
}
export declare function useFocusable(props: UseFocusableProps, ref: RefObject): UseFocusableResult;