import { IRTransform } from "relay-compiler/lib/core/CompilerContext"; type Args = { renameFiltersArgument: boolean; }; /** * Finds connection client-handles that relay-compiler emits and replaces * them with a version of the `@connection` directive that Apollo Client uses; * which is identical to relay's version, except the `filters` parameter is * named `filter` (singular). * * @param wrappedConnectionTransform * relay-compiler's connection client-handle transform */ export declare function emitApolloClientConnectionTransform({ renameFiltersArgument, }: Args): (wrapped: IRTransform) => IRTransform; export {}; //# sourceMappingURL=emitApolloClientConnectionTransform.d.ts.map