import React from 'react'; import type { JSX } from 'react'; export type CodeWalkthroughLayoutProps = React.PropsWithChildren<{ className?: string; }>; export declare function CodeWalkthroughLayout({ className, children }: CodeWalkthroughLayoutProps): JSX.Element;