import { ReactNode } from 'react'; /** * Returns true if the element is of type P, returns false otherwise * @param {any} element * @param {React.ComponentType
} ComponentType * @returns {boolean} */ export declare function isElementOfType
(element: ReactNode, ComponentType: React.ComponentType
): element is React.ReactElement
;