import { ITransactionDateInterface } from '../ITransactionDate.interface';
import { ITransactionAmountInterface } from '../ITransactionAmount.interface';
import { IBucketInterface } from '../IBucket.interface';
export interface DefaultsTableItemInterface extends ITransactionDateInterface, ITransactionAmountInterface, IBucketInterface {
    rating?: number;
}
