import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IAccessLimitation } from "./interfaces/IAccessLimitation"; import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; export declare class AccessLimitationModel extends Model implements IAccessLimitation { static TABLE_NAME: string; group_name: string; organization_ids: number[]; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }