import { type ApplicationRuntimeConfig } from '@commercetools-frontend/application-config';
type CustomEntityConfigTaskOptions = {
    entryPointUriPath: string;
    dotfiles?: string[];
    packageName?: string;
};
declare const customApplicationConfig: (options: CustomEntityConfigTaskOptions) => Promise<ApplicationRuntimeConfig["env"]>;
declare const customViewConfig: (options: Omit<CustomEntityConfigTaskOptions, "entryPointUriPath">) => Promise<ApplicationRuntimeConfig["env"]>;
export { customApplicationConfig, customViewConfig };
declare const legacyConfig: {
    customApplicationConfig: (options: CustomEntityConfigTaskOptions) => Promise<ApplicationRuntimeConfig["env"]>;
};
export default legacyConfig;
