export default interface Cost {
    timestamp: Date;
    amount: number;
    currency: string;
}
export declare const aggregateCostsByDay: (estimates: Cost[]) => {
    [date: string]: Cost;
};
