import { UseQueryOptions } from '@tanstack/react-query'; import type { BrandingSettingsResponseResponse } from '../responses/BrandingSettingsResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetBrandingSettingsQueryHeaderParams { 'Harness-Account'?: string; } export type GetBrandingSettingsOkResponse = ResponseWithPagination; export type GetBrandingSettingsErrorResponse = unknown; export interface GetBrandingSettingsProps extends Omit, 'url'> { } export declare function getBrandingSettings(props: GetBrandingSettingsProps): Promise; /** * Gets Branding Settings */ export declare function useGetBrandingSettingsQuery(props: GetBrandingSettingsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;