import { Sequelize, DataTypes } from 'sequelize'; import SpruceCoreModel from '../lib/SpruceModel'; export declare class Skill extends SpruceCoreModel { static readonly doNotSync = true; static readonly paranoid = false; static readonly scopes: { public: { attributes: never[]; }; organization: { attributes: string[]; }; }; static readonly attributes: { id: { type: DataTypes.AbstractDataTypeConstructor; defaultValue: DataTypes.AbstractDataTypeConstructor; primaryKey: boolean; }; name: { type: DataTypes.StringDataTypeConstructor; comment: string; allowNull: boolean; unique: boolean; }; slug: { type: DataTypes.StringDataTypeConstructor; comment: string; allowNull: boolean; }; description: { type: DataTypes.TextDataTypeConstructor; comment: string; allowNull: boolean; }; icon: { type: DataTypes.TextDataTypeConstructor; comment: string; allowNull: boolean; }; }; id: string; name: string; slug: string; description: string; icon: string; } declare const _default: (sequelize: Sequelize) => void; export default _default;