import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetCompanyNotificationsHeaderXGustoAPIVersion, GetCompanyNotificationsRequest, GetCompanyNotificationsResponse, Status } from "../models/operations/getcompanynotifications.js"; export type NotificationsGetCompanyNotificationsQueryData = GetCompanyNotificationsResponse; export declare function prefetchNotificationsGetCompanyNotifications(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetCompanyNotificationsRequest, options?: RequestOptions): Promise; export declare function buildNotificationsGetCompanyNotificationsQuery(client$: GustoEmbeddedCore, request: GetCompanyNotificationsRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyNotificationsGetCompanyNotifications(companyUuid: string, parameters: { status?: Status | undefined; xGustoAPIVersion?: GetCompanyNotificationsHeaderXGustoAPIVersion | undefined; page?: number | undefined; per?: number | undefined; }): QueryKey; //# sourceMappingURL=notificationsGetCompanyNotifications.core.d.ts.map