import type { Child, FunctionMaybe, ObservableReadonly, Truthy } from '../types'; declare const If: ({ when, fallback, children }: { when: FunctionMaybe; fallback?: Child; children: Child | ((value: (() => Truthy)) => Child); }) => ObservableReadonly; export default If;