import { Plugin, Options, Build } from "@dwwoelfel/graphile-build"; interface Inflectors { [str: string]: ((...args: Array) => any); } declare type InflectorsGenerator = (inflection: Inflectors, build: Build, options: Options) => Inflectors; export default function makeAddInflectorsPlugin(additionalInflectorsOrGenerator: Inflectors | InflectorsGenerator, replace?: boolean): Plugin; export {};