import type { FunctionalComponent } from "../component.js"; import { MaybeSignal } from "../scope.js"; import { Children } from "./Fragment.js"; /** * `If` is a component that can be used to render conditionally. */ export declare const If: FunctionalComponent<{ condition?: MaybeSignal; children?: Children; }>; /** * `ElseIf` serves as an `else if` block for {@link If}. It can also be chained * multiple times. */ export declare const ElseIf: FunctionalComponent<{ condition?: MaybeSignal; children?: Children; }>; /** * `Else` indicates the `else` block for {@link If} and {@link ElseIf}. */ export declare const Else: FunctionalComponent<{ children?: Children; }>;