import { TableProps as BootstrapTableProps } from 'react-bootstrap';
export interface PortfolioTableProps extends BootstrapTableProps {
    error?: boolean;
    loading?: boolean;
    manager?: string;
    classNames?: string;
    Rows: PortfolioTableRow[];
}
export interface PortfolioTableRow {
    Name: string;
    PtgTotalWealth: number;
    PtgYield: number;
    Total: number;
}
