import { ObjectTypeComposer, SchemaComposer } from 'graphql-compose'; import type { ElasticMappingT } from './mappingConverter'; export declare type composeWithElasticOptsT = { graphqlTypeName: string; elasticIndex: string; elasticType: string; elasticMapping: ElasticMappingT; elasticClient: any; pluralFields?: string[]; prefix?: string; postfix?: string; schemaComposer?: SchemaComposer; }; export declare function composeWithElastic(opts: composeWithElasticOptsT): ObjectTypeComposer; //# sourceMappingURL=composeWithElastic.d.ts.map