import { OnInit } from '@angular/core'; import * as i0 from "@angular/core"; type IconType = { bgColor?: string; } & { name: string; size?: "xsm" | "sm" | "md" | "lg" | "xlg" | "xxlg" | "huge" | "giant" | string; color?: string; style?: "duotone" | "linear" | "filled"; }; type ItemsCarouselType = { imageLeft?: string; imageActive?: string; imageRight?: string; iconLeft?: IconType; iconActive?: IconType; iconRight?: IconType; text?: string; }; export declare class LoadingCarouselComponent implements OnInit { isVisible: boolean; items: ItemsCarouselType[]; logo: null | string; loadingStep: number; animationState: string; ngOnInit(): void; startAnimationCycle(): void; nextAnimationState(): void; getImage(image: string | null | undefined): string | null; get state1(): string; get state2(): "1" | "2" | "3"; get state3(): "1" | "2" | "3"; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};