export type OwnerNetValueEntity = {
    id: bigint;
    klend_usd: string;
    strategies_usd: string;
    kvaults_usd: string;
    staking_usd: string;
    owner_id: number;
    created_on: Date;
};
export default OwnerNetValueEntity;
export type OwnerNetValueEntityHourEntity = OwnerNetValueEntity & {
    resampled_on: Date;
};
export type OwnerNetValueEntityDayEntity = OwnerNetValueEntity & {
    resampled_on: Date;
};
