interface Asset {
    close_price: number;
    continent: string;
    cost_basis: number;
    country: string;
    cusip: null | string | number;
    has_cost_basis: boolean;
    id: string;
    institution_price: number;
    institution_value: number;
    is_cash: boolean;
    name: string;
    percent_change: number;
    quantity: number;
    sectors: any[];
    symbol: string;
    type: string;
    weight?: number;
    percentChange?: number;
}
export { Asset };
