import { Fetch } from '../utils'; import { GlobalErrorHandler } from '..'; export declare class MerchantApi { fetchInstance: Fetch; constructor(endpoint: string, token: string, onError?: GlobalErrorHandler); getMerchants: (searchValues?: string[], guids?: string[], page?: number, perPage?: number) => Promise; getMerchantByGuid: (guid: string) => Promise; }