import { Blockchain } from '@liqnft/candy-shop-types'; /** * Get the parameterize string of single query / multiple queries * @param queryString string or array of string * @returns string with parameter for sending request to server */ export declare const getParametrizeQuery: (queryString: string | string[]) => string; export declare const mapToCompatibleBlockchain: (blockchain?: Blockchain | undefined) => string | undefined;