/**
 * Object describing a financial instrument.
 */
export interface Instrument {
    /**
     * Name of the instrument.
     */
    security: string;
    /**
     * Description of the security.
     */
    description: string;
}
/**
 * Represents the result returned from a Bloomberg InstrumentList request.
 */
export declare type InstrumentListData = Array<Instrument>;
