import { OnInit, TemplateRef } from '@angular/core';
export declare class FivStep implements OnInit {
index: number;
icon: string;
isLast: boolean;
open: boolean;
title: string;
subtitle: string;
content: TemplateRef<any>;
constructor();
ngOnInit(): void;
}