/** * Service to validate store and website IDs exist in Magento database */ export declare class MagentoStoreValidator { /** * Fetch all valid store IDs from Magento */ getValidStoreIds(config: any): Promise; /** * Fetch all valid website IDs from Magento */ getValidWebsiteIds(config: any): Promise; /** * Validate if a store ID exists * Accepts '0' (default scope) as always valid */ isValidStoreId(storeId: string, config: any, validStoreIds?: string[]): Promise; /** * Validate if a website ID exists */ isValidWebsiteId(websiteId: string, config: any, validWebsiteIds?: string[]): Promise; } //# sourceMappingURL=MagentoStoreValidator.d.ts.map