import React from 'react'; declare type Props = { title?: string; description?: string; /** * If step is valid (used by StepFlow) */ isValid: boolean; /** * Disable the step in the StepFlowMenu (used by StepFlow) */ disabled?: boolean; children?: React.ReactNode; }; export declare const StepFlowStep: React.FC; export {};