import { OrderSide, SaleKind } from '../types/types'; export declare const API_HOST = "https://api.element.market"; export declare const API_HOST_TESTNET = "https://api-test.element.market"; export declare const TIME_OUT = 15000; export interface ApiOption { chain: string; isTestnet: boolean; apiKey: string; } export interface NonceQuery { maker: string; schema: string; count: number; } export interface Fees { contractAddress: string; protocolFeePoints: number; protocolFeeAddress: string; royaltyFeePoints: number; royaltyFeeAddress: string; } export interface OrderQuery { asset_contract_address?: string; token_ids?: Array; sale_kind?: SaleKind; side?: OrderSide; maker?: string; taker?: string; payment_token?: string; order_by?: string; direction?: string; listed_before?: number | string; listed_after?: number | string; limit?: number; offset?: number; }