interface UseHandleReversedOptions {
    isReversed?: boolean;
    direction: 'ltr' | 'rtl';
    orientation?: 'horizontal' | 'vertical';
}
declare function useHandleReversed(options: UseHandleReversedOptions): boolean;

export { useHandleReversed as default };
