import React from 'react';
import type { GraphQLField } from 'graphql';
import type { OperationType } from '../operation';
export interface OperationExampleProps {
    operationType: OperationType;
    operation: GraphQLField<any, any>;
}
export declare function OperationExample({ operationType, operation }: OperationExampleProps): React.JSX.Element;
