import { AnimationComponent } from "../lib/animation/animation-component"; export declare class SplashScreen { ani: AnimationComponent; tag: string; title: any; titleElement: HTMLElement; body: any; bodyElement: HTMLElement; type: string; component: any; el: HTMLElement; active: boolean; delay: number; repeat: number; paused: boolean; yoyo: boolean; componentTag: string; timeScale: number; titleText: string; titleAlign: string; bodyText: string; bodyAlign: string; constructor(); componentDidLoad(): void; componentDidUpdate(): void; animate(customOptions: any): void; start(options?: any): Promise; getOptions(): Promise; getTimeline(): Promise; animateEndHandler(event: CustomEvent): void; postRender(): Promise; render(): any; }