import { z } from "zod"; export declare const getPolymarketEventsParametersSchema: z.ZodObject<{ id: z.ZodOptional; slug: z.ZodOptional; active: z.ZodDefault>; archived: z.ZodOptional; closed: z.ZodDefault>; startDateMin: z.ZodOptional; startDateMax: z.ZodOptional; endDateMin: z.ZodOptional; endDateMax: z.ZodOptional; ascending: z.ZodOptional; order: z.ZodOptional>; limit: z.ZodOptional; offset: z.ZodOptional; liquidityMin: z.ZodOptional; tagSlug: z.ZodOptional; showOnlyMarketsAcceptingOrders: z.ZodDefault>; }, "strip", z.ZodTypeAny, { active: boolean; closed: boolean; showOnlyMarketsAcceptingOrders: boolean; id?: string | undefined; slug?: string | undefined; archived?: boolean | undefined; startDateMin?: string | undefined; startDateMax?: string | undefined; endDateMin?: string | undefined; endDateMax?: string | undefined; ascending?: boolean | undefined; order?: "slug" | "volume" | "liquidity" | "startDate" | "endDate" | undefined; limit?: number | undefined; offset?: number | undefined; liquidityMin?: number | undefined; tagSlug?: string | undefined; }, { id?: string | undefined; slug?: string | undefined; active?: boolean | undefined; closed?: boolean | undefined; showOnlyMarketsAcceptingOrders?: boolean | undefined; archived?: boolean | undefined; startDateMin?: string | undefined; startDateMax?: string | undefined; endDateMin?: string | undefined; endDateMax?: string | undefined; ascending?: boolean | undefined; order?: "slug" | "volume" | "liquidity" | "startDate" | "endDate" | undefined; limit?: number | undefined; offset?: number | undefined; liquidityMin?: number | undefined; tagSlug?: string | undefined; }>; export declare const getPolymarketMarketsParametersSchema: z.ZodObject<{ id: z.ZodOptional; slug: z.ZodOptional; active: z.ZodOptional; closed: z.ZodDefault>; archived: z.ZodOptional; acceptingOrders: z.ZodOptional; enableOrderBook: z.ZodOptional; category: z.ZodOptional; order: z.ZodOptional>; ascending: z.ZodOptional; limit: z.ZodOptional; offset: z.ZodOptional; }, "strip", z.ZodTypeAny, { closed: boolean; id?: string | undefined; slug?: string | undefined; active?: boolean | undefined; acceptingOrders?: boolean | undefined; archived?: boolean | undefined; ascending?: boolean | undefined; order?: "id" | "slug" | "volume" | "liquidity" | "startDate" | "endDate" | undefined; limit?: number | undefined; offset?: number | undefined; enableOrderBook?: boolean | undefined; category?: string | undefined; }, { id?: string | undefined; slug?: string | undefined; active?: boolean | undefined; closed?: boolean | undefined; acceptingOrders?: boolean | undefined; archived?: boolean | undefined; ascending?: boolean | undefined; order?: "id" | "slug" | "volume" | "liquidity" | "startDate" | "endDate" | undefined; limit?: number | undefined; offset?: number | undefined; enableOrderBook?: boolean | undefined; category?: string | undefined; }>; export declare const getPolymarketMarketDetailsParametersSchema: z.ZodEffects; slug: z.ZodOptional; tokenId: z.ZodOptional; includeTag: z.ZodOptional; }, "strip", z.ZodTypeAny, { id?: string | undefined; slug?: string | undefined; includeTag?: boolean | undefined; tokenId?: string | undefined; }, { id?: string | undefined; slug?: string | undefined; includeTag?: boolean | undefined; tokenId?: string | undefined; }>, { id?: string | undefined; slug?: string | undefined; includeTag?: boolean | undefined; tokenId?: string | undefined; }, { id?: string | undefined; slug?: string | undefined; includeTag?: boolean | undefined; tokenId?: string | undefined; }>; export declare const getPolymarketOrderBookParametersSchema: z.ZodObject<{ tokenId: z.ZodString; }, "strip", z.ZodTypeAny, { tokenId: string; }, { tokenId: string; }>; export declare const getPolymarketQuoteParametersSchema: z.ZodObject<{ tokenId: z.ZodString; side: z.ZodEnum<["BUY", "SELL"]>; size: z.ZodOptional; limitPrice: z.ZodOptional; }, "strip", z.ZodTypeAny, { side: "BUY" | "SELL"; tokenId: string; size?: number | undefined; limitPrice?: number | undefined; }, { side: "BUY" | "SELL"; tokenId: string; size?: number | undefined; limitPrice?: number | undefined; }>; export declare const getPolymarketOpenOrdersParametersSchema: z.ZodObject<{ id: z.ZodOptional; market: z.ZodOptional; assetId: z.ZodOptional; nextCursor: z.ZodOptional; }, "strip", z.ZodTypeAny, { id?: string | undefined; market?: string | undefined; assetId?: string | undefined; nextCursor?: string | undefined; }, { id?: string | undefined; market?: string | undefined; assetId?: string | undefined; nextCursor?: string | undefined; }>; export declare const getPolymarketTradesParametersSchema: z.ZodObject<{ id: z.ZodOptional; makerAddress: z.ZodOptional; market: z.ZodOptional; assetId: z.ZodOptional; before: z.ZodOptional; after: z.ZodOptional; nextCursor: z.ZodOptional; }, "strip", z.ZodTypeAny, { id?: string | undefined; market?: string | undefined; assetId?: string | undefined; nextCursor?: string | undefined; makerAddress?: string | undefined; before?: string | undefined; after?: string | undefined; }, { id?: string | undefined; market?: string | undefined; assetId?: string | undefined; nextCursor?: string | undefined; makerAddress?: string | undefined; before?: string | undefined; after?: string | undefined; }>;