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 BannersAllowedQueryHeaderParams { 'Harness-Account'?: string; } export type BannersAllowedOkResponse = ResponseWithPagination; export type BannersAllowedErrorResponse = unknown; export interface BannersAllowedProps extends Omit, 'url'> { } export declare function bannersAllowed(props: BannersAllowedProps): Promise; /** * Check for a current account max 5 banners are enabled or not. */ export declare function useBannersAllowedQuery(props: BannersAllowedProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;