/// <reference types="react" />
export interface WalkthroughItem {
    icon?: JSX.Element;
    title: string;
    subtitle: string | JSX.Element;
    isSequential?: boolean;
}
export interface WalkthroughProps {
    title: string;
    items: Array<WalkthroughItem>;
}
export declare const Walkthrough: ({ title, items }: WalkthroughProps) => import("react/jsx-runtime").JSX.Element;
