import type { ExistingTransferInstrument } from '../../core/models/api/transfer-instrument';
import type { QueryOptions } from '../types';
/**
 * Gets a single transfer instrument associated with a legal entity
 * @param transferInstrumentId ID of transfer instrument
 * @param options additional options passed to Tanstack Query, eg; refetchInterval for polling
 */
export declare const useGetTransferInstrument: (transferInstrumentId?: string | undefined, options?: QueryOptions<ExistingTransferInstrument>) => import("@tanstack/react-query").UseQueryResult<ExistingTransferInstrument, Error>;
