import { DefaultValueFromAncestor } from '@tracktor/types-treege'; interface AssignValueToChildrenProps { value?: DefaultValueFromAncestor | null; onChange?: (sourceValue?: string) => void; currentType?: string; } declare const AssignValueToChildren: ({ onChange, value, currentType }: AssignValueToChildrenProps) => import("react/jsx-runtime").JSX.Element; export default AssignValueToChildren;