import type { BrandingModelProperties as CommonBrandingModelProperties } from "../common/BrandingModelProperties.js";
import type { SplashScreenModelProperties } from "./SplashScreenModelProperties.js";
/**
 * Properties for the branding service.
 */
export interface BrandingModelProperties extends CommonBrandingModelProperties {
    /**
     * A link to an icon or png to be used as the application favIcon.
     */
    favIcon?: string;
    /**
     * The name to be used as the application name.
     */
    applicationName?: string;
    /**
     * The splash screen configuration options.
     */
    splashScreenSettings?: SplashScreenModelProperties;
}
