import type { EnvType } from "./setup-config.types";
export interface ImagesForEnvironment {
    splashImage: string;
    iconImage: string;
    adaptiveIconImage: string;
    faviconImage: string;
}
interface NameForImageType {
    splashFileName: string;
    iconFileName: string;
    adaptiveFileName: string;
    faviconFileName: string;
}
export declare const getImagesForEnvironment: (env: EnvType, pathToCheck?: string, namesForImages?: NameForImageType) => ImagesForEnvironment;
export {};
