import * as React from "react";
/**
 * Hook that logs a warning if any interactive content is found within the given element.
 * Should only be used in development.
 *
 * @private
 */
export declare function useWarnOnInteractiveDescendants(ref: React.RefObject<HTMLElement | undefined>, message: string): void;
