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