import { CreationOptional, DataTypes, InferAttributes, InferCreationAttributes } from 'sequelize'; import { TenantModel } from '../tenant-model'; import type { SettingType } from './types'; export declare class Setting extends TenantModel, InferCreationAttributes> { id: CreationOptional; livemode: boolean; instance_did?: string; type: SettingType; mount_location: string; active: boolean; component_did?: string; settings: Record; 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; }; active: { type: DataTypes.AbstractDataTypeConstructor; allowNull: boolean; defaultValue: boolean; }; type: { type: DataTypes.StringDataType; allowNull: boolean; }; mount_location: { type: DataTypes.StringDataType; allowNull: boolean; }; component_did: { type: DataTypes.StringDataType; allowNull: boolean; }; description: { type: DataTypes.StringDataType; allowNull: boolean; }; settings: { type: DataTypes.AbstractDataTypeConstructor; allowNull: boolean; }; 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; } export type TSetting = InferAttributes;