export declare function dpMaxSubArray<T>(arr: Array<T>, key?: keyof T): {
    low: number;
    high: number;
    sum: number;
};
