/**
 * Returns the proper full path for the app icon, if it is present
 */
export declare function getAppIconSrcPath(options: {
    root: string /** root path to project */;
    app?: {
        icon?: string;
    };
    icon?: string /** relative path to icon */;
}): string | undefined;
