import { ReactNode } from 'react'; /** * If the provided `ReactNode` is a single Fragment, * return the children of that fragment. * * Otherwise, returns the `children` or an empty array * * @example * ```tsx * unwrapRootFragment( * * * * * ) // [, ] * ``` */ export declare const unwrapRootFragment: (children: ReactNode) => Array | undefined; //# sourceMappingURL=unwrapRootFragment.d.ts.map