import { CurrentAppConfiguration } from '../../../models/app/app.js'; import { DeveloperPlatformClient } from '../../../utilities/developer-platform-client.js'; import { RenderAlertOptions } from '@shopify/cli-kit/node/ui'; export interface UseOptions { directory: string; configName?: string; reset?: boolean; warningContent?: RenderAlertOptions; shouldRenderSuccess?: boolean; developerPlatformClient?: DeveloperPlatformClient; } export default function use({ directory, configName, warningContent, shouldRenderSuccess, reset, developerPlatformClient, }: UseOptions): Promise; interface SaveCurrentConfigOptions { configFileName: string; directory: string; } export declare function saveCurrentConfig({ configFileName, directory }: SaveCurrentConfigOptions): Promise; export {};