/**
 * Utility to test the Shopify API connection
 */
import { ShopifyCredentials } from "./theme-manager.js";
/**
 * Tests the connection to the Shopify Admin API
 * @param credentials Shopify API credentials
 * @returns Object containing test result and message
 */
export declare function testShopifyConnection(credentials: ShopifyCredentials): Promise<{
    success: boolean;
    message: string;
    statusCode?: number;
    themes?: any[];
}>;
