import { Decimal } from 'decimal.js';
export interface IAllocation {
    percent: Decimal;
    symbol: string;
}
