import React, { type PropsWithChildren } from 'react'; import type { WithConditions } from '@redocly/config'; export type CodeStepProps = WithConditions<{ id: string; heading?: string; }>; export declare function CodeStep({ id, heading, when, unless, children }: PropsWithChildren): React.JSX.Element | null; export declare const StepWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, "isActive" | "scrollMarginTop"> & { isActive: boolean; scrollMarginTop: number; }, never> & Partial, HTMLDivElement>, "isActive" | "scrollMarginTop"> & { isActive: boolean; scrollMarginTop: number; }, never>>> & string;