import React from 'react'; export interface NUIPStepProps { title?: any; jsx?: any; isDone?: boolean; key?: string; } export interface NUIPStepsProps { steps?: NUIPStepProps[]; } declare const NUIPSteps: (props: NUIPStepsProps) => React.JSX.Element; export default NUIPSteps;