import { UseQueryOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetBrandingAssetQueryPathParams { type: string; } export interface GetBrandingAssetQueryHeaderParams { 'Harness-Account'?: string; } export type GetBrandingAssetOkResponse = ResponseWithPagination; export type GetBrandingAssetErrorResponse = unknown; export interface GetBrandingAssetProps extends GetBrandingAssetQueryPathParams, Omit, 'url'> { } export declare function getBrandingAsset(props: GetBrandingAssetProps): Promise; /** * Retrieves the branding images for the account scope */ export declare function useGetBrandingAssetQuery(props: GetBrandingAssetProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;