import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetNotificationsNotificationUuidHeaderXGustoAPIVersion, GetNotificationsNotificationUuidRequest, GetNotificationsNotificationUuidResponse } from "../models/operations/getnotificationsnotificationuuid.js"; export type NotificationsGetDetailsQueryData = GetNotificationsNotificationUuidResponse; export declare function prefetchNotificationsGetDetails(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetNotificationsNotificationUuidRequest, options?: RequestOptions): Promise; export declare function buildNotificationsGetDetailsQuery(client$: GustoEmbeddedCore, request: GetNotificationsNotificationUuidRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyNotificationsGetDetails(notificationUuid: string, parameters: { xGustoAPIVersion?: GetNotificationsNotificationUuidHeaderXGustoAPIVersion | undefined; }): QueryKey; //# sourceMappingURL=notificationsGetDetails.core.d.ts.map