import type { AllHTMLAttributes, AriaAttributes, DOMAttributes, HTMLAttributes } from 'react';
import type { GlobalAttributes } from './constants.js';
export type GlobalAttributesT = Omit & HTMLAttributes & Omit, 'as'> & {
tabIndex?: WCAGTabIndex;
}, 'dangerouslySetInnerHTML'>;
export declare const getGlobalAttributes: (props: T, overrides?: Partial>) => GlobalAttributesT;