import { UseQueryOptions } from '@tanstack/react-query'; import type { OidcProvidersResponseResponse } from '../responses/OidcProvidersResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ListOidcProviderQueryHeaderParams { 'Harness-Account'?: string; } export type ListOidcProviderOkResponse = ResponseWithPagination; export type ListOidcProviderErrorResponse = unknown; export interface ListOidcProviderProps extends Omit, 'url'> { } export declare function listOidcProvider(props: ListOidcProviderProps): Promise; /** * Get OIDC providers */ export declare function useListOidcProviderQuery(props: ListOidcProviderProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;