import { BasePlugin } from "../base/base.plugin.js"; import type { SplashScreenHideOptions, SplashScreenShowOptions } from "./splash-screen.type.js"; export declare class SplashScreenPlugin extends BasePlugin { constructor(); /** * 显示启动页(不稳定) * @param options * @Platform android/ios only */ show(options?: SplashScreenShowOptions): Promise; /** * 隐藏启动页(不稳定) * @param options * @Platform android/ios only */ hide(options?: SplashScreenHideOptions): Promise; } export declare const splashScreenPlugin: SplashScreenPlugin; //# sourceMappingURL=splash-screen.plugin.d.ts.map