import { Col, Fn } from "sequelize/types/lib/utils"; import { SequelizeAdapter } from "../SequelizeAdapter"; declare type OtherOptions = { fn: string; args?: OtherArgs; }; declare type OtherArgs = Array | OtherOptions | string | number; export default function argsToOtherOptions(args: OtherArgs, adapter: SequelizeAdapter): { options: (string | Fn | Col)[]; associationFields: string[]; includeFields: string[]; }; export {};