import * as React from 'react'; interface Props { title?: React.ReactNode; children?: React.ReactNode; markdown?: string; stepNumber?: number; } export declare function OperationExplainedBox({ title, stepNumber, markdown, children }: Props): import("react/jsx-runtime").JSX.Element; export {};