import type { FragmentDefinitionNode, SelectionSetNode } from 'graphql';
export declare function projectResultBySelectionSet({ result, selectionSet, fragments, }: {
    result: any;
    selectionSet: SelectionSetNode;
    fragments?: Record<string, FragmentDefinitionNode>;
}): any;
