import { IPortfolioEntry, CONTRACT_INTERFACES } from '../../';
import CI = CONTRACT_INTERFACES;
export declare const portfolio: {
    add: (isOpen: boolean, pricing: CI.ITradeIdeaPricing, ticker: string, allocation: number, notes: string, title?: string, direction?: 'long' | 'short', assetDescription?: string, reference?: string, assetImage?: CI.ITradeIdeaImage, alternativeProviderSymbols?: CI.ITradeIdeaIdeaAlternativeProviderSymbol[]) => IPortfolioEntry;
    open: (title: string, notes: string, pricing: CI.ITradeIdeaPricing, ticker: string, assetDescription: string, direction: 'long' | 'short', allocation: number, reference?: string, assetImage?: CI.ITradeIdeaImage, alternativeProviderSymbols?: CI.ITradeIdeaIdeaAlternativeProviderSymbol[]) => IPortfolioEntry;
    adjust: (notes: string, pricing: CI.ITradeIdeaPricing, ticker: string, allocation: number, reference?: string) => IPortfolioEntry;
    close: (notes: string, pricing: CI.ITradeIdeaPricing, ticker: string, reference?: string) => IPortfolioEntry;
};
