import { AbortError } from '../error.js'; export declare const NotProvidedStoreFQDNError: AbortError; /** * It returns the Partners' API service we should interact with. * * @returns Fully-qualified domain of the partners service we should interact with. */ export declare function partnersFqdn(): Promise; /** * It returns the Admin service we should interact with. * * @returns Fully-qualified domain of the Admin service we should interact with. */ export declare function adminFqdn(): Promise; /** * It returns the App Management API service we should interact with. * * @returns Fully-qualified domain of the App Management service we should interact with. */ export declare function appManagementFqdn(): Promise; /** * It returns the App Dev API service we should interact with. * * @param storeFqdn - The store FQDN. * @returns Fully-qualified domain of the App Dev service we should interact with. */ export declare function appDevFqdn(storeFqdn: string): Promise; /** * It returns the Developer Dashboard domain we should interact with. * * @returns Fully-qualified domain of the Developer Dashboard we should interact with. */ export declare function developerDashboardFqdn(): Promise; /** * It returns the BusinessPlatform' API service we should interact with. * * @returns Fully-qualified domain of the partners service we should interact with. */ export declare function businessPlatformFqdn(): Promise; /** * It returns the Identity service we should interact with. * * @returns Fully-qualified domain of the Identity service we should interact with. */ export declare function identityFqdn(): Promise; /** * Normalize the store name to be used in the CLI. * It will add the .myshopify.com domain if it's not present. * * @param store - Store name. * @returns Normalized store name. */ export declare function normalizeStoreFqdn(store: string): string; /** * Convert a store FQDN to the admin URL pattern for local development. * In local mode, transforms \{store\}.my.shop.dev to admin.shop.dev/store/\{store\}. * * @param storeFqdn - Normalized store FQDN. * @returns Store admin URL base (without protocol or path). */ export declare function storeAdminUrl(storeFqdn: string): string;