import { GQLElement } from "../../classes/GQLElement";
export declare abstract class GQLAnyType<BuiltType = any, ExtensionsType = any> extends GQLElement<BuiltType, any, ExtensionsType> {
    constructor(name?: string);
    abstract build(): BuiltType;
}
