/** * Checks if a given value is a Markdoc `example` node. * * A valid example node must: * - Be a Markdoc `Node` (checked via `isNode`) * - Have the tag `'markdoc-example'` * * @param value - Any value to check. * @returns `true` if the value is a Markdoc node with the tag `'markdoc-example'`, otherwise `false`. */ export declare function isExampleNode(value?: any): value is Node & { tag: 'markdoc-example'; }; //# sourceMappingURL=is-example-node.d.ts.map