@redocly/theme
Version:
Shared UI components lib
5 lines (4 loc) • 317 B
TypeScript
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;