import { AriaAttributes } from 'react';
import { RequireOneOf } from './types';
export type AriaLabelRequired = RequireOneOf<AriaAttributes, ['aria-label', 'aria-labelledby']>;
/**
 * Check if `aria-label` or `aria-labelledby` are defined and are truthy
 *
 * @param componentName The name of the component
 * @param props The object of props passed to the component
 */
export declare function useCheckAriaLabel(componentName: string, props: {
    'aria-label'?: string;
    'aria-labelledby'?: string;
}): void;
