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