export declare const mockAvailableSites: (responseData?: any) => void; export declare const mockAccessibleProducts: (responseData?: any) => void; /** * Mock availableSites for a specific gatewayBaseUrl. Only matches requests with the gatewayBaseUrl in the url. * @param gatewayBaseUrl Base url without trailing slash */ export declare const mockAvailableSitesForGatewayUrl: (gatewayBaseUrl: string, useUnitCompliantEndpoint?: boolean) => void; /** * Mock accessibleProducts for a specific gatewayBaseUrl. Only matches requests with the gatewayBaseUrl in the url. * @param gatewayBaseUrl Base url without trailing slash */ export declare const mockAccessibleProductsForGatewayUrl: (gatewayBaseUrl: string, useUnitCompliantEndpoint?: boolean) => void; export declare const mockAvailableSitesWithError: () => void; export declare const mockAccessibleProductsWithError: () => void;