import type { OperationVariables } from '@apollo/client'; import type { Constructor } from '@apollo-elements/core/types'; import type { ApolloSubscriptionElement } from '@apollo-elements/core/types'; type MixinInstance = B & { new (...a: any[]): InstanceType & ApolloSubscriptionElement; documentType: 'subscription'; }; declare function ApolloSubscriptionMixinImpl(superclass: B): MixinInstance; /** * `ApolloSubscriptionMixin`: class mixin for apollo-subscription elements. */ export declare const ApolloSubscriptionMixin: typeof ApolloSubscriptionMixinImpl; export {};