import { UseQueryOptions } from '@tanstack/react-query'; import type { BannerListResponseResponse } from '../responses/BannerListResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetAccountScopedActiveBannersQueryQueryParams { search_term?: string; /** * @default 0 */ page?: number; /** * @default 20 */ limit?: number; sort?: 'created' | 'identifier' | 'name' | 'updated'; order?: 'ASC' | 'DESC'; } export interface GetAccountScopedActiveBannersQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedActiveBannersOkResponse = ResponseWithPagination; export type GetAccountScopedActiveBannersErrorResponse = unknown; export interface GetAccountScopedActiveBannersProps extends Omit, 'url'> { queryParams: GetAccountScopedActiveBannersQueryQueryParams; } export declare function getAccountScopedActiveBanners(props: GetAccountScopedActiveBannersProps): Promise; /** * This API endpoint will return max 5 banners as that is the enabled banners count. */ export declare function useGetAccountScopedActiveBannersQuery(props: GetAccountScopedActiveBannersProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;