import { FragmentVNode, VNodeRepresentationSource } from "./vnode"; import { CreateNodeResult } from "./source"; /** * `unique symbol` to represent a {@link FragmentVNode}, this will be used on the {@link VNode.reference} property. * The {@link FragmentVNode} should be ignored and the {@link VNode.children} values should be used in its place */ export declare const Fragment: unique symbol; export declare function createFragment | object, C extends unknown[]>(options: O, ...children: C): CreateNodeResult; export declare function createFragment(options?: Record, ...children: VNodeRepresentationSource[]): FragmentVNode; //# sourceMappingURL=fragment.d.ts.map