import { type PropsWithChildren } from 'react'; import type { DTRNode } from '../types'; interface Props { element: DTRNode; } export declare const DTRLeafControl: ({ children, element }: PropsWithChildren) => JSX.Element; export {};