import React, { type PropsWithChildren } from 'react';
import type { CodeWalkthroughAttr } from '@redocly/config';
export type CodeWalkthroughProps = PropsWithChildren<CodeWalkthroughAttr>;
export declare function CodeWalkthrough({ children, steps, preview, ...attributes }: CodeWalkthroughProps): React.JSX.Element;
