import type { Constructor, VariablesOf } from '@apollo-elements/core/types'; import type { ApolloQueryElement } from '@apollo-elements/core/types'; type MixinInstance = B & { new >(...a: any[]): InstanceType & ApolloQueryElement; documentType: 'query'; }; /** * `ApolloQueryMixin`: class mixin for apollo-query elements. */ declare function ApolloQueryMixinImpl(superclass: B): MixinInstance; export declare const ApolloQueryMixin: typeof ApolloQueryMixinImpl; export {};