import { UseQueryOptions } from '@tanstack/react-query'; import type { BannerBooleanResponseResponse } from '../responses/BannerBooleanResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ValidateAccountScopedBannerIdentifierQueryPathParams { bannerId: string; } export interface ValidateAccountScopedBannerIdentifierQueryHeaderParams { 'Harness-Account'?: string; } export type ValidateAccountScopedBannerIdentifierOkResponse = ResponseWithPagination; export type ValidateAccountScopedBannerIdentifierErrorResponse = unknown; export interface ValidateAccountScopedBannerIdentifierProps extends ValidateAccountScopedBannerIdentifierQueryPathParams, Omit, 'url'> { } export declare function validateAccountScopedBannerIdentifier(props: ValidateAccountScopedBannerIdentifierProps): Promise; /** * Validate if the specified BannerDTO identifier is available for use in account scope */ export declare function useValidateAccountScopedBannerIdentifierQuery(props: ValidateAccountScopedBannerIdentifierProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;