import React, { FC, PropsWithChildren } from 'react'; import { FlowCardStep } from './FlowCardStep'; export interface FlowCardProps { children?: React.ReactNode; /** Optionally specify the current step array index. Set to `false` to manually track step state */ currentIndex?: number | boolean; /** Adds order number to the steps */ ordered?: boolean; /** Adds one or more classnames to an element */ className?: string; } interface FlowCard extends FC> { Step: typeof FlowCardStep; } export declare const FlowCard: FlowCard; export {};