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 GetAccountScopedBannersQueryQueryParams { search_term?: string; /** * @default 0 */ page?: number; /** * @default 20 */ limit?: number; sort?: 'created' | 'identifier' | 'name' | 'updated'; order?: 'ASC' | 'DESC'; enabled?: 'false' | 'true'; } export interface GetAccountScopedBannersQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedBannersOkResponse = ResponseWithPagination; export type GetAccountScopedBannersErrorResponse = unknown; export interface GetAccountScopedBannersProps extends Omit, 'url'> { queryParams: GetAccountScopedBannersQueryQueryParams; } export declare function getAccountScopedBanners(props: GetAccountScopedBannersProps): Promise; /** * Retrieves the list of Banners in account scope */ export declare function useGetAccountScopedBannersQuery(props: GetAccountScopedBannersProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;