import { ValueNode } from 'graphql';
export declare class FederatedLinkImport {
    name: string;
    as: string | null;
    constructor(name: string, as: string | null);
    toString(): string;
    static fromTypedefs(node: ValueNode): FederatedLinkImport[];
}
