/** * Checks if a given value is a Markdoc list node. * * A valid list node must: * - Be a Markdoc `Node` (validated via `isNode`) * - Have the `type` property equal to `'list'` * * @param value - Any value to check. * @returns `true` if the value is a Markdoc node of type `'list'`, otherwise `false`. */ export declare function isListNode(value?: unknown): value is Node & { type: 'list'; }; //# sourceMappingURL=is-list-node.d.ts.map