export declare const POST_METHOD = "POST"; export declare const JSON_HEADERS: { 'Content-Type': string; 'OnchainKit-Version': string; }; export declare const CONTEXT_HEADER = "OnchainKit-Context"; export declare const JSON_RPC_VERSION = "2.0"; /** * Internal - The context where the request originated * * @enum {string} * @readonly */ export declare const RequestContext: { readonly API: "api"; readonly Buy: "buy"; readonly Checkout: "checkout"; readonly Hook: "hook"; readonly NFT: "nft"; readonly Swap: "swap"; readonly Wallet: "wallet"; }; export type RequestContextType = (typeof RequestContext)[keyof typeof RequestContext]; //# sourceMappingURL=constants.d.ts.map