import React from 'react';
/**
 * Checks if the given children is a React fragment.
 * @param children - The children to check.
 * @returns True if the children is a React fragment, false otherwise.
 */
export declare function isFragment(children: React.ReactNode): boolean;
