import type { QueryOptions } from '../types';
import type { GetTransferInstrumentResponse } from './transferInstruments.types';
export type QueryKeyTransferInstruments = ['transferInstruments'];
/**
 * Gets a list of transfer instruments associated with a legal entity
 * @param options additional options passed to Tanstack Query, eg; refetchInterval for polling
 */
export declare const useTransferInstruments: (options?: QueryOptions<GetTransferInstrumentResponse>) => import("@tanstack/preact-query").UseQueryResult<GetTransferInstrumentResponse, Error>;
