/**
 * Get the actual motion element, skipping text and comment nodes
 * @param el - The HTML element to check
 * @returns The first non-text/comment element
 */
export declare function getMotionElement(el: HTMLElement): HTMLElement;
/**
 * Hook to get the motion element of current component instance
 * @returns Function that returns the motion element
 */
export declare function useMotionElm(): {
    value: HTMLElement | null;
};
