import { type TDescendant } from '@udecode/plate-common'; export type Fragment = TDescendant[]; /** * Checks recursively whether all members of the fragment are Nodes. * It does not validate schema/hierarchy. */ export declare function isFragment(value: unknown): value is Fragment;