import { TemplateRef } from '@angular/core';
import * as i0 from "@angular/core";
/**
 * The `awWizardStepTitle` directive can be used as an alternative to the `stepTitle` input of a [[WizardStep]]
 * to define the content of a step title inside the navigation bar.
 * This step title can be freely created and can contain more than only plain text
 *
 * ### Syntax
 *
 * ```html
 * <ng-template awWizardStepTitle>
 *     ...
 * </ng-template>
 * ```
 *
 * @author Marc Arndt
 */
export declare class WizardStepTitleDirective {
    templateRef: TemplateRef<any>;
    /**
     * Constructor
     *
     * @param templateRef A reference to the content of the `ng-template` that contains this [[WizardStepTitleDirective]]
     */
    constructor(templateRef: TemplateRef<any>);
    static ɵfac: i0.ɵɵFactoryDeclaration<WizardStepTitleDirective, never>;
    static ɵdir: i0.ɵɵDirectiveDeclaration<WizardStepTitleDirective, "ng-template[awStepTitle], ng-template[awWizardStepTitle]", never, {}, {}, never, never, false, never>;
}
