export type WalkthroughBlockItem = Readonly<{
id: string;
title: string;
description: React.ReactNode;
image: React.ReactNode;
}>;
/**
* The accordion item buttons are wrapped in `
`, so this block expects an
* `` above it (typically a `SectionTitle` passed via `titleBlock`). Drop it
* into a page without one and the heading order will skip a level.
*/
export type WalkthroughBlockProps = React.ComponentProps<"section"> & Readonly<{
titleBlock?: React.ReactNode;
items: ReadonlyArray;
forceShowAll?: boolean;
}>;
export declare const WalkthroughBlock: ({ titleBlock, items, forceShowAll, className, ...rest }: WalkthroughBlockProps) => import("react").JSX.Element;
//# sourceMappingURL=WalkthroughBlock.d.ts.map