import React, { FC } from 'react'; export interface FlowCardStepProps { /** If passed, it will replace the order number provided by the wrapper */ orderNumber?: React.ReactElement | string | number | false; /** If passed, it will replace status icon */ headerIcon?: React.ReactElement; /** Title of the element */ title?: string | React.ReactElement; /** Step header content */ headerAction?: React.ReactElement; /** Step body content */ content?: React.ReactElement; /** Step footer content */ footerAction?: React.ReactElement | false; /** Error State */ error?: boolean; /** Saved State */ saved?: boolean; /** Active State */ active?: boolean; /** Disabled state. Step looks unclickable with fading about 60% */ disabled?: boolean; /** Adds one or more classnames to an element */ className?: string; /** Adds style to an element */ style?: React.CSSProperties; } export declare const FlowCardStep: FC;