import type { RawDagEdge } from './RawDagEdge'; /** * Return all children destinations the specified source has. * @param edges An array of dag edge * @param source The target source * * See also: {@link dagEdgesDescendant} */ export declare function dagEdgesChildren(edges: RawDagEdge[], source: T): T[];