import { InvalidateQueryFilters, QueryClient, UseQueryResult, UseSuspenseQueryResult } from "@tanstack/react-query"; import { GleanBaseError } from "../models/errors/gleanbaseerror.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 { QueryHookOptions, SuspenseQueryHookOptions } from "./_types.js"; import { buildGovernanceListfindingsexportsQuery, GovernanceListfindingsexportsQueryData, prefetchGovernanceListfindingsexports, queryKeyGovernanceListfindingsexports } from "./governanceListfindingsexports.core.js"; export { buildGovernanceListfindingsexportsQuery, type GovernanceListfindingsexportsQueryData, prefetchGovernanceListfindingsexports, queryKeyGovernanceListfindingsexports, }; export type GovernanceListfindingsexportsQueryError = GleanBaseError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Lists findings exports * * @remarks * Lists all DLP findings exports. */ export declare function useGovernanceListfindingsexports(options?: QueryHookOptions): UseQueryResult; /** * Lists findings exports * * @remarks * Lists all DLP findings exports. */ export declare function useGovernanceListfindingsexportsSuspense(options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setGovernanceListfindingsexportsData(client: QueryClient, data: GovernanceListfindingsexportsQueryData): GovernanceListfindingsexportsQueryData | undefined; export declare function invalidateAllGovernanceListfindingsexports(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=governanceListfindingsexports.d.ts.map