interface UseAriaLabelWarning { /** * Provides a development-only console warning when a component * that needs an aria-label is mounted without one. */ (component: string, ariaLabel?: string, shouldTrigger?: boolean): void; } declare const useAriaLabelWarning: UseAriaLabelWarning; export default useAriaLabelWarning;