import { Binding, CaptureType, SyntheticViewTemplate } from '@microsoft/fast-element'; type WhenTemplate = SyntheticViewTemplate | Binding; /** * Directive that allows supplying an "else" template to the traditional {@link https://www.fast.design/docs/api/fast-element.when/#when-function} directive * * @param binding - The condition to test for rendering. * @param trueTemplateOrTemplateBinding - The template or a binding that gets the template to render when the condition is true. * @param falseTemplateOrTemplateBinding - The template or a binding that gets the template to render when the condition is false. * @public */ export declare function whenElse(binding: Binding, trueTemplateOrTemplateBinding: WhenTemplate, falseTemplateOrTemplateBinding: WhenTemplate): CaptureType; export {}; //# sourceMappingURL=when-else.d.ts.map