import type { QueryOptions } from '../types';
import type { components } from './transferInstruments.contract';
export type GetTransferInstrumentResponse = components['schemas']['TransferInstrumentOverview'][];
export type TransferInstrumentReference = components['schemas']['TransferInstrumentOverview'];
export type TransferInstrumentReferenceWithStatusId = Omit<TransferInstrumentReference, 'transferInstrument' | 'status'> & {
    status: NonNullable<components['schemas']['TransferInstrumentOverview']['status']>;
    transferInstrument: Omit<components['schemas']['TransferInstrumentReferenceDto'], 'id'> & {
        id: string;
    };
};
/**
 * 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 useGetTransferInstruments: (options?: QueryOptions<GetTransferInstrumentResponse>) => import("@tanstack/react-query").UseQueryResult<GetTransferInstrumentResponse, Error>;
