import { FunctionalComponent } from "../component.js"; import { Template } from "../template.js"; import { type MaybeSignal } from "../scope.js"; export type Children = Template | MaybeSignal | Children[]; /** * Fragment is a component that can be used to wrap multiple children without * introducing an extra DOM element. * * @example * ```tsx * render() { * return ( * <> *

Hello World

*

This is a paragraph.

* * ); * } * ``` */ export declare const Fragment: FunctionalComponent<{ children?: Children; }>;