import React from 'react'; import { SetupWidgetStep } from '@wix/bex-core'; export interface SetupStepCardProps { step: SetupWidgetStep; /** The recommended next step — soft blue surface + bold title. */ isPrimary: boolean; /** Inline content is shown below the header. */ expanded: boolean; onActivate: () => void; renderStepContent?: (step: SetupWidgetStep) => React.ReactNode; } /** * Mobile step card (per Figma "Support FW on mobile"). 12px padding, a 24px * icon cell and a trailing chevron that replaces the per-step CTA button: a * right chevron for navigate / completed (with a completed action) steps, and a * down/up chevron for inline-expandable steps. The whole card is the click * target. Collapsed cards are a bare title + chevron; an expanded inline card * adds a divider, its description, and the consumer content below the header. */ export declare const SetupStepCard: ({ step, isPrimary, expanded, onActivate, renderStepContent, }: SetupStepCardProps) => React.JSX.Element; //# sourceMappingURL=SetupStepCard.d.ts.map