import { UseQueryOptions } from '@tanstack/react-query'; import type { DevopsEssentialsResponse } from '../schemas/DevopsEssentialsResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetDevopsEssentialsLicenseQueryPathParams { accountIdentifier: string; } export type GetDevopsEssentialsLicenseOkResponse = ResponseWithPagination; export type GetDevopsEssentialsLicenseErrorResponse = {}; export interface GetDevopsEssentialsLicenseProps extends GetDevopsEssentialsLicenseQueryPathParams, Omit, 'url'> { } export declare function getDevopsEssentialsLicense(props: GetDevopsEssentialsLicenseProps): Promise; /** * Get subscriptions information for the Devops Essentials package for an accountIdentifier. */ export declare function useGetDevopsEssentialsLicenseQuery(props: GetDevopsEssentialsLicenseProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;