import type { SWRConfiguration, SWRResponse } from "swr"; import client from "../../client"; import type { GetPurchasesIdPathParams, GetPurchasesIdQueryParams, GetPurchasesIdQueryResponse } from "../models/GetPurchasesId"; export declare function getPurchasesIdQueryOptions(id: GetPurchasesIdPathParams["id"], params?: GetPurchasesIdQueryParams, options?: Partial[0]>): SWRConfiguration; /** * @description Retrieve the details of a purchase by its ID (transaction hash) * @summary Purchase details * @link /purchases/:id */ export declare function useGetPurchasesId(id: GetPurchasesIdPathParams["id"], params?: GetPurchasesIdQueryParams, options?: { query?: SWRConfiguration; client?: Partial>[0]>; }): SWRResponse;