import { CreationOptional, DataTypes, InferAttributes, InferCreationAttributes } from 'sequelize'; import { TenantModel } from '../tenant-model'; export declare class PaymentStat extends TenantModel, InferCreationAttributes> { id: CreationOptional; livemode: boolean; instance_did?: string; timestamp: number; currency_id: string; amount_paid: string; amount_payout: string; amount_refund: string; created_at: CreationOptional; updated_at: CreationOptional; static readonly GENESIS_ATTRIBUTES: { id: { type: DataTypes.StringDataType; primaryKey: boolean; allowNull: boolean; defaultValue: (size?: number) => string; }; livemode: { type: DataTypes.AbstractDataTypeConstructor; allowNull: boolean; }; timestamp: { type: DataTypes.IntegerDataTypeConstructor; defaultValue: number; }; currency_id: { type: DataTypes.StringDataType; allowNull: boolean; }; amount_paid: { type: DataTypes.StringDataType; defaultValue: string; }; amount_payout: { type: DataTypes.StringDataType; defaultValue: string; }; amount_refund: { type: DataTypes.StringDataType; defaultValue: string; }; created_at: { type: DataTypes.DateDataTypeConstructor; defaultValue: DataTypes.AbstractDataTypeConstructor; allowNull: boolean; }; updated_at: { type: DataTypes.DateDataTypeConstructor; defaultValue: DataTypes.AbstractDataTypeConstructor; allowNull: boolean; }; }; static initialize(sequelize: any): void; static associate(): void; } export type TPaymentStat = InferAttributes;