import * as React from 'react';
import type { CnStepProps } from './types';
import './cn-step.scss';
/**
 * @category 组件
 *  步骤组件
 */
export declare const CnStep: {
    (props: CnStepProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
    displayName: string;
    defaultProps: {
        direction: string;
        shape: string;
        disabled: boolean;
    };
};
