import { VConditionalDirective } from "./VConditionalDirective"; import { VDirectiveParseContext } from "./VDirectiveParseContext"; /** * Directive for conditional rendering in the virtual DOM. * This directive renders an element based on a boolean expression, but only if preceding v-if or v-else-if directives were false. * For example: *
This div is conditionally rendered.
* The element and its children are included in the DOM only if the expression evaluates to true AND no preceding condition was met. * This directive must be used after a v-if or another v-else-if directive. */ export declare class VElseIfDirective extends VConditionalDirective { /** * @param context The context for parsing the directive. */ constructor(context: VDirectiveParseContext); /** * @inheritdoc */ get name(): string; }