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