import { VDirectiveParseContext } from "./VDirectiveParseContext";
import { VConditionalDirective } from "./VConditionalDirective";
/**
* Directive for conditional rendering in the virtual DOM.
* This directive conditionally renders elements based on a boolean expression.
* For example:
*
This div is conditionally rendered.
* The element and its children are included in the DOM only if the expression evaluates to true.
* If the expression is false, the element and its children are not rendered.
*/
export declare class VIfDirective extends VConditionalDirective {
/**
* @param context The context for parsing the directive.
*/
constructor(context: VDirectiveParseContext);
/**
* @inheritdoc
*/
get name(): string;
}