import type { TenantDto } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class LocalListVersionAuthorization extends Model {
    static readonly MODEL_NAME: string;
    localListVersionId: number;
    authorizationId: number;
    tenantId: number;
    tenant?: TenantDto;
    static setDefaultTenant(instance: LocalListVersionAuthorization): void;
    constructor(...args: any[]);
}
