import { UseQueryOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface CreditsAllocationExportDataQueryPathParams { accountIdentifier: string; } export interface CreditsAllocationExportDataQueryQueryParams { moduleType?: string; } export type CreditsAllocationExportDataOkResponse = ResponseWithPagination; export type CreditsAllocationExportDataErrorResponse = {}; export interface CreditsAllocationExportDataProps extends CreditsAllocationExportDataQueryPathParams, Omit, 'url'> { queryParams: CreditsAllocationExportDataQueryQueryParams; } export declare function creditsAllocationExportData(props: CreditsAllocationExportDataProps): Promise; /** * Get credits allocation Data for an account for a given moduleType */ export declare function useCreditsAllocationExportDataQuery(props: CreditsAllocationExportDataProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;