import { ModelStatic } from 'sequelize'; import { Model } from './model'; type sortType = string[]; export default class SortParser { model: ModelStatic; sort: string | string[]; constructor(sort: sortType, model: ModelStatic); toSequelizeParams(): any; getGroup(): string[]; } export {};