import type { ModelProperties } from "./ModelProperties";
/**
 * Properties for the splash screen.
 */
export interface SplashScreenModelProperties extends ModelProperties {
    /**
     * Whether to show the splash screen.
     */
    showSplashScreen?: boolean;
    /**
     * The splash icon source.
     */
    splashScreenIcon?: string;
    /**
     * Whether to use application name on the splash screen.
     */
    useApplicationName?: boolean;
}
