import { Model, InferAttributes, InferCreationAttributes, CreationOptional } from 'sequelize'; declare enum OwnerStatus { Active = "Active", Inactive = "Inactive" } declare class Owner extends Model, InferCreationAttributes> { Id: CreationOptional; Name: string; Domains: string; Status: OwnerStatus; IsAllowLoginAuth: boolean; IsAllowGoogleAuth: boolean; IsAllowMicrosoftAuth: boolean; IsWhiteLabeled: boolean; MicrosoftClientId: string; GoogleClientId: string; GoogleClientSecret: string | null; LoginCoverImage: string | null; TelegramBotName: string | null; } declare const _default: typeof Owner; export default _default; export { Owner, OwnerStatus };