import { InvalidateQueryFilters, QueryClient, UseQueryResult, UseSuspenseQueryResult } from "@tanstack/react-query"; import { GustoEmbeddedError } from "../models/errors/gustoembeddederror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { GetV1GarnishmentsChildSupportHeaderXGustoAPIVersion, GetV1GarnishmentsChildSupportRequest } from "../models/operations/getv1garnishmentschildsupport.js"; import { QueryHookOptions, SuspenseQueryHookOptions, TupleToPrefixes } from "./_types.js"; import { buildGarnishmentsGetChildSupportDataQuery, GarnishmentsGetChildSupportDataQueryData, prefetchGarnishmentsGetChildSupportData, queryKeyGarnishmentsGetChildSupportData } from "./garnishmentsGetChildSupportData.core.js"; export { buildGarnishmentsGetChildSupportDataQuery, type GarnishmentsGetChildSupportDataQueryData, prefetchGarnishmentsGetChildSupportData, queryKeyGarnishmentsGetChildSupportData, }; export type GarnishmentsGetChildSupportDataQueryError = GustoEmbeddedError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Get child support garnishment data * * @remarks * Agency data and requirements to be used for creating child support garnishments * * scope: `garnishments:read` */ export declare function useGarnishmentsGetChildSupportData(request: GetV1GarnishmentsChildSupportRequest, options?: QueryHookOptions): UseQueryResult; /** * Get child support garnishment data * * @remarks * Agency data and requirements to be used for creating child support garnishments * * scope: `garnishments:read` */ export declare function useGarnishmentsGetChildSupportDataSuspense(request: GetV1GarnishmentsChildSupportRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setGarnishmentsGetChildSupportDataData(client: QueryClient, queryKeyBase: [ parameters: { xGustoAPIVersion?: GetV1GarnishmentsChildSupportHeaderXGustoAPIVersion | undefined; } ], data: GarnishmentsGetChildSupportDataQueryData): GarnishmentsGetChildSupportDataQueryData | undefined; export declare function invalidateGarnishmentsGetChildSupportData(client: QueryClient, queryKeyBase: TupleToPrefixes<[ parameters: { xGustoAPIVersion?: GetV1GarnishmentsChildSupportHeaderXGustoAPIVersion | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllGarnishmentsGetChildSupportData(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=garnishmentsGetChildSupportData.d.ts.map