import React from "react"; export interface OnElementTypeProps { elementType: string; children: React.ReactNode; } export declare const OnElementType: ({ elementType, children }: OnElementTypeProps) => React.JSX.Element | null;