import { Fragment } from '../jsx-runtime'; import { JSXNode } from '../types'; export declare function isFragment(node: JSXNode): node is { type: typeof Fragment; props: { children: JSXNode; }; };